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