Type Alias: DataChange
ts
type DataChange = {
operation: "insert" | "update" | "delete";
rowid: BigInt;
table: string;
};Defined in: src/types.ts:160
Properties
| Property | Type | Defined in |
|---|---|---|
operation | "insert" | "update" | "delete" | src/types.ts:161 |
rowid | BigInt | src/types.ts:163 |
table | string | src/types.ts:162 |

