W3Booster SDK 4.6.0
    Preparing search index...

    Interface TypeCatalog<T>

    interface TypeCatalog<T> {
        get(typeId: string): T | undefined;
        has(typeId: string): boolean;
        values(): readonly T[];
    }

    Type Parameters

    • T
    Index
    • Parameters

      • typeId: string

      Returns T | undefined

    • Parameters

      • typeId: string

      Returns boolean

    • Returns readonly T[]