8 lines
294 B
TypeScript
8 lines
294 B
TypeScript
import { Texture } from '../../../rendering/renderers/shared/texture/Texture';
|
|
import type { CacheParser } from '../CacheParser';
|
|
/**
|
|
* Returns an object of textures from an array of textures to be cached
|
|
* @memberof assets
|
|
*/
|
|
export declare const cacheTextureArray: CacheParser<Texture[]>;
|