pixi.js
Version:
PixiJS — The HTML5 Creation Engine =============
29 lines (28 loc) • 963 B
TypeScript
import type { ExtensionMetadata } from '../../extensions/Extensions';
import type { ResolvedAsset } from '../types';
/**
* A prefer order lets the resolver know which assets to prefer depending on the various parameters passed to it.
* @memberof assets
*/
export interface PreferOrder {
/** the importance order of the params */
priority?: string[];
params: {
[key: string]: any;
};
}
/**
* Format for url parser, will test a string and if it pass will then parse it, turning it into an ResolvedAsset
* @memberof assets
*/
export interface ResolveURLParser {
extension?: ExtensionMetadata;
/** A config to adjust the parser */
config?: Record<string, any>;
/** the test to perform on the url to determine if it should be parsed */
test: (url: string) => boolean;
/** the function that will convert the url into an object */
parse: (value: string) => ResolvedAsset & {
[key: string]: any;
};
}