ph-dev-tools
Version:
Development Tools for PHibernate
17 lines (16 loc) • 577 B
TypeScript
import { DocEntry } from "./DocEntry";
/**
* Created by Papa on 3/27/2016.
*/
export declare class EntityCandidate {
type: string;
path: string;
private location;
private verified;
docEntry: DocEntry;
static create(type: string, path: string, parentClass: string, parentImport: string): EntityCandidate;
parent: EntityCandidate;
parentKeyword: string;
constructor(type: string, path: string, parent: EntityCandidate | string, location?: string, verified?: boolean);
matches(type: string, location?: string): boolean;
}