Skip to content

Commit

Permalink
Merge pull request exceljs#1544 from Andries-Smit/patch-1
Browse files Browse the repository at this point in the history
Typing Table add row optional rowNumber
  • Loading branch information
alubbe authored Nov 30, 2020
2 parents f776806 + 9b2866e commit e1de626
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1857,7 +1857,7 @@ export interface Table extends Required<TableProperties> {
/**
* Add a row of data, either insert at rowNumber or append
*/
addRow: (values: any[], rowNumber: number) => void
addRow: (values: any[], rowNumber?: number) => void
/**
* Get column
*/
Expand Down

0 comments on commit e1de626

Please sign in to comment.