Skip to content

Documentation / @super-line/core / RowOp

Type Alias: RowOp

RowOp = { d: unknown; id: string; n: string; op: "insert"; } | { d: unknown; id: string; n: string; op: "update"; } | { id: string; n: string; op: "delete"; }

Defined in: packages/core/src/wire.ts:64

One row mutation within a CBatchFrame. d is the FULL row (validated against the collection schema); delete carries none.

Released under the MIT License.