Skip to content
module@warp-drive/experiments/storage @experimental

Interface InternalCacheStorageEvent

ts
interface InternalCacheStorageEvent {
  key: string | null;
  newValue: string | null;
  oldValue: string | null;
  storageArea: string;
}

Defined in: storage/cache.ts:8

Properties

key

ts
key: string | null;

Defined in: storage/cache.ts:10


newValue

ts
newValue: string | null;

Defined in: storage/cache.ts:12


oldValue

ts
oldValue: string | null;

Defined in: storage/cache.ts:11


storageArea

ts
storageArea: string;

Defined in: storage/cache.ts:9

Released under the MIT License.