module@warp-drive/experiments/storage @experimental
Interface CacheStorageEvent
ts
interface CacheStorageEvent {
key: string | null;
newValue: string | null;
oldValue: string | null;
storageArea: CacheStorage;
}Defined in: storage/cache.ts:14
Properties
key
ts
key: string | null;Defined in: storage/cache.ts:16
newValue
ts
newValue: string | null;Defined in: storage/cache.ts:18
oldValue
ts
oldValue: string | null;Defined in: storage/cache.ts:17
storageArea
ts
storageArea: CacheStorage;Defined in: storage/cache.ts:15