@ts-ast-parser/core
Version:
Reflects a simplified version of the TypeScript AST for generating documentation
7 lines • 450 B
TypeScript
import type { FunctionDeclaration } from '../models/function.js';
import { FunctionNode } from '../nodes/function-node.js';
import type { NodeFactory } from './node-factory.js';
import type { Method } from '../models/member.js';
import type ts from 'typescript';
export declare const functionFactory: NodeFactory<FunctionDeclaration | Method, FunctionNode, ts.VariableStatement | ts.FunctionDeclaration>;
//# sourceMappingURL=create-function.d.ts.map