Skip to content

Type Alias: SqlWriteEvent

SqlWriteEvent = { op: "put"; table: string; rowId: string; before?: Record<string, unknown>; after: Record<string, unknown>; touchedColumns: readonly string[]; } | { op: "del"; table: string; rowId: string; before: Record<string, unknown>; }

Defined in: server/src/sql-engine.ts:76