UNPKG

@ts-ast-parser/core

Version:

Reflects a simplified version of the TypeScript AST for generating documentation

10 lines 710 B
import { ExportDeclarationNode } from '../nodes/export-declaration-node.js'; import { ExportAssignmentNode } from '../nodes/export-assignment-node.js'; import type { ExportStatementNode } from '../utils/types.js'; import type { NodeFactory } from './node-factory.js'; import type { Export } from '../models/export.js'; import ts from 'typescript'; export declare const exportDeclarationFactory: NodeFactory<Export, ExportDeclarationNode, ts.Node>; export declare const exportAssignmentFactory: NodeFactory<Export, ExportAssignmentNode, ts.ExportAssignment>; export declare const exportStatementFactory: NodeFactory<Export, ExportStatementNode, ts.ExportDeclaration>; //# sourceMappingURL=create-export.d.ts.map