API reference › @evolu/common › local‑first/Storage › DbChange
Defined in: packages/common/src/local-first/Storage.ts:301
A DbChange is a change to a table row. Together with a unique Timestamp, it forms a CrdtMessage.
Extends
Extended by
Properties
id
id: string & Brand<"Id">;
Inherited from
isDelete
isDelete: boolean | null;
Inherited from
isInsert
isInsert: boolean;
Inherited from
table
table: string;
Inherited from
values
values: Readonly<
Record<string, string | number | Uint8Array<ArrayBufferLike> | null>
> & Brand<"ValidDbChangeValues">;