Interface AssetManagerOptions

interface AssetManagerOptions {
    simpleCache?: boolean;
    storage?: boolean | Storage | Cache;
}

Properties

simpleCache?: boolean

simple memory based cache for downloaded files, default = false

storage?: boolean | Storage | Cache

Cache Storage for downloaded files, can use with caches.open When true and by default uses caches.open('threepipe-assetmanager'), set to false to disable

Default

true

Generated using TypeDoc