Type alias EntityConstructor

EntityConstructor: (new (...args) => EntityInterface) & {
    ETYPE: string;
    class: string;
    clientEnabledStaticMethods: string[];
    nymph: Nymph;
    pubSubEnabled: boolean;
    restEnabled: boolean;
    searchRestrictedData: string[];
    alterOptions?<T>(options) => T;
    factory(guid?) => Promise<EntityInterface>;
    factoryReference(reference) => EntityInterface;
    factorySync(guid?) => EntityInterface;
}

Generated using TypeDoc