index.d.ts 677 B

12345678910111213
  1. export { initPreContext } from './context';
  2. export declare function preJs(jsCode: string): any;
  3. export declare function preHtml(htmlCode: string): any;
  4. export declare const preCss: typeof preJs;
  5. export declare const preJson: typeof preJs;
  6. export declare function preNVueJs(jsCode: string): any;
  7. export declare function preNVueHtml(htmlCode: string): any;
  8. export declare const preNVueCss: typeof preNVueJs;
  9. export declare const preNVueJson: typeof preNVueJs;
  10. export declare function preUVueJs(jsCode: string): any;
  11. export declare function preUVueHtml(htmlCode: string): any;
  12. export declare const preUVueCss: typeof preUVueJs;
  13. export declare const preUVueJson: typeof preUVueJs;