Type alias EntityConstructor

EntityConstructor: (new (...args) => EntityInterface) & {
    class: string;
    nymph: Nymph;
    factory(guid?) => Promise<EntityInterface>;
    factoryReference(reference) => EntityInterface;
    factorySync(guid?) => EntityInterface;
    serverCallStatic(method, params) => Promise<any>;
}

Generated using TypeDoc