Skip to content
Sheetwrite

Sheetwrite / Documentation

RowBridgeFillDelta@sheetwrite/core/adapter

A fill-series transaction effect.

A fill-series transaction effect.

Members 10

kind
readonly kind: "fill";
range
readonly range: Range | null;
cells
readonly cells: readonly RowBridgeCell<Id>[];
transaction
readonly transaction: RowBridgeTransaction;
transactionId
readonly transactionId: string;
source
readonly source: OperationSource;
previous
readonly previous: unknown;
next
readonly next: unknown;
operation
readonly operation: DocumentOp;
rowIds
readonly rowIds: readonly (Id | null)[];

Declaration

View full TypeScript declaration
export interface RowBridgeFillDelta<Id extends RowBridgeId = RowBridgeId> {
readonly kind: "fill";
readonly range: Range | null;
readonly cells: readonly RowBridgeCell<Id>[];
readonly transaction: RowBridgeTransaction;
readonly transactionId: string;
readonly source: OperationSource;
readonly previous: unknown;
readonly next: unknown;
readonly operation: DocumentOp;
readonly rowIds: readonly (Id | null)[];
}