Type alias RowsChangedArgs

RowsChangedArgs: {
    index: number;
    region: RowRegion;
    span: number;
    type: "rows-inserted" | "rows-removed";
}

An arguments object for the changed signal.

Notes

Data models should emit the changed signal with this args object type when rows are inserted or removed.

Type declaration

  • Readonly index: number

    The index of the first modified row.

  • Readonly region: RowRegion

    The region which contains the modified rows.

  • Readonly span: number

    The number of modified rows.

  • Readonly type: "rows-inserted" | "rows-removed"

    The discriminated type of the args object.