escodegen.d.ts 445 B

12345678910111213141516171819
  1. /* eslint-disable */
  2. import * as ESTree from 'estree';
  3. import { IGeneratorOutput } from '../interfaces/IGeneratorOutput';
  4. declare module 'escodegen' {
  5. export interface XVerbatimProperty {
  6. content?: string;
  7. precedence: Precedence;
  8. }
  9. /**
  10. * @param ast
  11. * @param options
  12. * @returns IGeneratorOutput
  13. */
  14. export function generate (ast: ESTree.Node, options?: GenerateOptions): IGeneratorOutput;
  15. }