File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2895,7 +2895,7 @@ declare class Tabulator {
28952895 getRowFromPosition : ( position : number , activeOnly ?: boolean ) => RowComponent ;
28962896
28972897 /** You can delete any row in the table using the deleteRow function. */
2898- deleteRow : ( index : RowLookup | RowLookup [ ] ) => void ;
2898+ deleteRow : ( index : RowLookup | RowLookup [ ] ) => Promise < void > ;
28992899
29002900 /**
29012901 * You can add a row to the table using the addRow function.
Original file line number Diff line number Diff line change @@ -692,7 +692,7 @@ table.blockRedraw();
692692table . restoreRedraw ( ) ;
693693
694694table . getRows ( "visible" ) ;
695- table . deleteRow ( [ 15 , 7 , 9 ] ) ;
695+ table . deleteRow ( [ 15 , 7 , 9 ] ) . then ( ( ) => { } ) ;
696696
697697table . addColumn ( { } as ColumnDefinition ) . then ( ( ) => { } ) ;
698698
You can’t perform that action at this time.
0 commit comments