The metadata of an entity.

interface Meta {
    isAbstract: boolean;
    getTypeName(): string;
    isOfType(type: string): boolean;
    isSame(other: ScriptObject): boolean;
}

Hierarchy (view full)

Properties

isAbstract: boolean

Whether the entity can be created.

Methods

  • Beta

    Parameters

    • type: string

    Returns boolean