@ts-ast-parser/core
Version:
Reflects a simplified version of the TypeScript AST for generating documentation
6 lines • 363 B
TypeScript
import type { ClassDeclaration } from '../models/class.js';
import type { NodeFactory } from './node-factory.js';
import { ClassNode } from '../nodes/class-node.js';
import type ts from 'typescript';
export declare const classFactory: NodeFactory<ClassDeclaration, ClassNode, ts.ClassDeclaration | ts.VariableStatement>;
//# sourceMappingURL=create-class.d.ts.map