Skip to content

Commit bb29df9

Browse files
authored
🤖 Merge PR DefinitelyTyped#71941 [@types/tabulator-tables]: Fix typo in method getRangeData() by @shubham88fru
1 parent 4e57f67 commit bb29df9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

‎types/tabulator-tables/index.d.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3339,7 +3339,7 @@ declare class Tabulator {
33393339
* ]
33403340
* ```
33413341
*/
3342-
getRangeData: () => unknown[][];
3342+
getRangesData: () => unknown[][];
33433343

33443344
setSheets: (data: SpreadsheetSheet[]) => void;
33453345
addSheet: (data: SpreadsheetSheet) => void;

‎types/tabulator-tables/tabulator-tables-tests.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1545,7 +1545,7 @@ const range1 = table.addRange(cell, cell);
15451545
range1.clearValues();
15461546
table.getRanges().forEach(range => range.remove());
15471547

1548-
const data1 = table.getRangeData();
1548+
const data1 = table.getRangesData();
15491549
data1[0][0] = { name: "steve" };
15501550

15511551
// Testing 6.0 features

0 commit comments

Comments
 (0)