Interface AssetExtension<ASSET, META_DATA>

This developer convenience object allows developers to group together the various asset parsers into a single object.

Memberof

PIXI

interface AssetExtension<ASSET, META_DATA> {
    cache?: Partial<CacheParser<ASSET>>;
    detection?: Partial<FormatDetectionParser>;
    extension: Asset;
    loader?: Partial<LoaderParser<ASSET, META_DATA, Record<string, any>>>;
    resolver?: Partial<ResolveURLParser>;
}

Type Parameters

  • ASSET = any
  • META_DATA = any

Properties

cache?: Partial<CacheParser<ASSET>>
detection?: Partial<FormatDetectionParser>
extension: Asset
loader?: Partial<LoaderParser<ASSET, META_DATA, Record<string, any>>>
resolver?: Partial<ResolveURLParser>

Generated using TypeDoc