Taos API Reference
    Preparing search index...

    Interface PackDoc

    One pack in the catalog.

    interface PackDoc {
        id: string;
        url: string;
        variants?: PackVariantDoc[];
        dependsOn?: string[];
        hash?: string;
        size?: number;
    }
    Index

    Properties

    id: string

    Stable pack id, referenced by dependsOn and PackManager.loadPack.

    url: string

    Catalog-relative URL of the default archive.

    variants?: PackVariantDoc[]

    Optional per-profile alternatives; the default url is the fallback.

    dependsOn?: string[]

    Ids of packs that must be loaded before this one.

    hash?: string
    size?: number