web3d / node_modules /three /src /loaders /Cache.d.ts
julien-c's picture
julien-c HF Staff
do not gitignore the builds
6cd9596
Raw
History Blame Contribute Delete
256 Bytes
export namespace Cache {
export let enabled: boolean;
export let files: any;
export function add(key: string, file: any): void;
export function get(key: string): any;
export function remove(key: string): void;
export function clear(): void;
}