Interface EntityDescription<EntityTypeIDs>

Refletion description for a particular entity type.

interface EntityDescription<EntityTypeIDs extends number> {
    fields: EntityFieldsDescription<EntityTypeIDs>;
    isAbstract: boolean;
    subTypes?: EntityTypeIDs[];
    superType?: EntityTypeIDs;
    typeId: EntityTypeIDs;
}

Type Parameters

  • EntityTypeIDs extends number

Properties

isAbstract: boolean
subTypes?: EntityTypeIDs[]
superType?: EntityTypeIDs