Skip to content

Type Alias: PersistenceStorageEntry

PersistenceStorageEntry = Readonly<{ key: string; value: unknown; }>

Defined in: fate/src/persistence.ts:61

Backend-neutral durable storage. Batches apply atomically and resolve only after commit. Exclusive sections must coordinate ALL instances using this key (including other tabs/processes). Use distinct lock names independently.

Released under the MIT License