Skip to content

sqlocal / index / DataChange

Type Alias: DataChange

ts
type DataChange = {
  operation: "insert" | "update" | "delete";
  rowid: BigInt;
  table: string;
};

Defined in: src/types.ts:160

Properties

PropertyTypeDefined in
operation"insert" | "update" | "delete"src/types.ts:161
rowidBigIntsrc/types.ts:163
tablestringsrc/types.ts:162

Released under the MIT License