index.d.ts 340 B

12345678910111213
  1. import * as t from '@babel/types';
  2. declare const extractImports: (root: t.File) => Record<string, string>;
  3. declare const plugin: (store: any) => (root: any) => any;
  4. declare const analyze: (code: string) => {
  5. title: any;
  6. of: any;
  7. name: any;
  8. isTemplate: any;
  9. imports: any;
  10. };
  11. export { analyze, extractImports, plugin };