import * as ts from "typescript"; import { DocEntry } from "../@types/types"; export default class TSDocumentParser { private fileName; private program?; private checker?; private output?; static with(file: string): TSDocumentParser; parse(): DocEntry[] | undefined; getResult(): DocEntry[] | undefined; visit(node: ts.Node): void; serializeSymbol(symbol: ts.Symbol): DocEntry; serializeClass(node: ts.ClassDeclaration): DocEntry | undefined; serializeDecorator(decorator: ts.Decorator): DocEntry; serializeSignature(signature: ts.Signature): DocEntry; isNodeExported(node: ts.Node): boolean; } //# sourceMappingURL=TSDocumentParser.d.ts.map