ph-dev-tools
Version:
Development Tools for PHibernate
11 lines (10 loc) • 510 B
TypeScript
/**
* Created by Papa on 3/26/2016.
*/
import * as ts from "typescript";
import { EntityCandidate } from "./EntityCandidate";
import { EntityCandidateRegistry } from "./EntityCandidateRegistry";
export declare var rootEntity: EntityCandidate;
export declare var globalCandidateRegistry: EntityCandidateRegistry;
/** Generate documention for all classes in a set of .ts files */
export declare function generateEntityDefinitions(fileNames: string[], options: ts.CompilerOptions): EntityCandidate[];