You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
785 B
14 lines
785 B
export { initPreContext } from './context';
|
|
export declare function preJs(jsCode: string, filename: string): any;
|
|
export declare function preHtml(htmlCode: string, filename: string): any;
|
|
export declare const preCss: typeof preJs;
|
|
export declare const preJson: typeof preJs;
|
|
export declare function preNVueJs(jsCode: string, filename: string): any;
|
|
export declare function preNVueHtml(htmlCode: string, filename: string): any;
|
|
export declare const preNVueCss: typeof preNVueJs;
|
|
export declare const preNVueJson: typeof preNVueJs;
|
|
export declare function preUVueJs(jsCode: string, filename: string): any;
|
|
export declare function preUVueHtml(htmlCode: string, filename: string): any;
|
|
export declare const preUVueCss: typeof preUVueJs;
|
|
export declare const preUVueJson: typeof preUVueJs;
|