import * as ts from "typescript"; import { DocEntry } from "../@types/types"; export default class TSDocumentSimpleParser { private fileName; private sourceFile?; clazz?: DocEntry[]; static with(file: string): TSDocumentSimpleParser; parse(): DocEntry[]; getSourceAst(fileName: string): ts.SourceFile; getClassEntry(name: string): DocEntry | null; getClass(): DocEntry[]; getScope(entry: DocEntry): string; getDecorator(child: ts.Node): DocEntry[]; getField(child: ts.Node): DocEntry[]; getParameter(child: ts.Node): DocEntry[]; private propertyToEntity; isDecorator(target: DocEntry, name: string[]): boolean; getSafe(obj: any, key: string): any; } //# sourceMappingURL=TSDocumentSimpleParser.d.ts.map