UnifiedStoredObject
type UnifiedStoredObject = object & any;
Defined in: atomiq-sdk/src/storage/IUnifiedStorage.ts:24
Base type for stored objects, every storage object MUST have an id field. The object might also specify a _meta
field which gets carried to the delete/save operations (and can be used to implement optimistic concurrency)
Type Declaration
| Name | Type | Defined in |
|---|---|---|
_meta? | any | atomiq-sdk/src/storage/IUnifiedStorage.ts:24 |
id | string | atomiq-sdk/src/storage/IUnifiedStorage.ts:24 |