コンテンツにスキップ

Interface: RowDelta<T>

このコンテンツはまだ日本語訳がありません。

Defined in: core/src/query/engine.ts:52

Row-level diff between two snapshots. Emitted by LiveQuery.subscribeDelta on any window shift. Rows are keyed by a stable identity derived from the underlying source rows (client IVM uses the joined-tuple id combination; single-source queries key on the primary row’s id).

T = unknown

readonly added: readonly T[]

Defined in: core/src/query/engine.ts:53


readonly removed: readonly T[]

Defined in: core/src/query/engine.ts:54


readonly changed: readonly T[]

Defined in: core/src/query/engine.ts:55