pixi.js
Version:
PixiJS — The HTML5 Creation Engine =============
12 lines (11 loc) • 305 B
TypeScript
import type { LoaderParser } from './parsers/LoaderParser';
/**
* A promise and parser pair
* @memberof assets
*/
export interface PromiseAndParser {
/** the promise that is loading the asset */
promise: Promise<any>;
/** the parser that is loading the asset */
parser: LoaderParser;
}