import { ExtensionType } from 'pixijs/core'; import type { CacheParser } from './cache'; import type { FormatDetectionParser } from './detections'; import type { LoaderParser } from './loader'; import type { ResolveURLParser } from './resolver'; /** * This developer convenience object allows developers to group * together the various asset parsers into a single object. * @memberof PIXI */ interface AssetExtension { extension: ExtensionType.Asset; loader?: Partial>; resolver?: Partial; cache?: Partial>; detection?: Partial; } export type { AssetExtension };