UNPKG

@bitjson/typedoc

Version:

Create api documentation for TypeScript projects.

9 lines (8 loc) 394 B
import * as ts from 'typescript'; import { Reflection } from '../../models/index'; import { Context } from '../context'; import { ConverterNodeComponent } from '../components'; export declare class InterfaceConverter extends ConverterNodeComponent<ts.InterfaceDeclaration> { supports: ts.SyntaxKind[]; convert(context: Context, node: ts.InterfaceDeclaration): Reflection | undefined; }