Skip to content

Commit 2b0f091

Browse files
committed
[docs] Missing params
1 parent 747a6df commit 2b0f091

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/store.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1667,6 +1667,7 @@ export interface Store {
16671667
* that will called with the Id of each Row, and with a function that can then
16681668
* be used to iterate over each Cell of the Row, should you wish.
16691669
*
1670+
* @param tableId The Id of the Table to iterate over.
16701671
* @param rowCallback The function that should be called for every Row.
16711672
* @example
16721673
* This example iterates over each Row in a Table, and lists each Cell Id
@@ -1700,6 +1701,8 @@ export interface Store {
17001701
* functional style. The `cellCallback` parameter is a CellCallback function
17011702
* that will called with the Id and value of each Cell.
17021703
*
1704+
* @param tableId The Id of the Table containing the Row to iterate over.
1705+
* @param rowId The Id of the Row to iterate over.
17031706
* @param cellCallback The function that should be called for every Cell.
17041707
* @example
17051708
* This example iterates over each Cell in a Row, and lists its value.

0 commit comments

Comments
 (0)