Interface AssetsBundle

Structure of a bundle found in a manifest file

PIXI

interface AssetsBundle {
    assets:
        | UnresolvedAsset<any>[]
        | Record<string, ArrayOr<string> | UnresolvedAssetObject>;
    name: string;
}

Properties

Properties

assets:
    | UnresolvedAsset<any>[]
    | Record<string, ArrayOr<string> | UnresolvedAssetObject>
name: string