File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1782,9 +1782,9 @@ Arguments passed to the `onCellKeyDown` handler. The shape differs based on whet
17821782** SELECT mode:**
17831783
17841784``` tsx
1785- interface SelectCellKeyDownArgs <TRow , TSummaryRow > {
1785+ interface SelectCellKeyDownArgs <TRow , TSummaryRow = unknown > {
17861786 mode: ' SELECT' ;
1787- column: CalculatedColumn <TRow , TSummaryRow >;
1787+ column: CalculatedColumn <TRow , TSummaryRow > | undefined ;
17881788 row: TRow ;
17891789 rowIdx: number ;
17901790 selectCell: (position : Position , options ? : SelectCellOptions ) => void ;
@@ -1794,7 +1794,7 @@ interface SelectCellKeyDownArgs<TRow, TSummaryRow> {
17941794** EDIT mode:**
17951795
17961796``` tsx
1797- interface EditCellKeyDownArgs <TRow , TSummaryRow > {
1797+ interface EditCellKeyDownArgs <TRow , TSummaryRow = unknown > {
17981798 mode: ' EDIT' ;
17991799 column: CalculatedColumn <TRow , TSummaryRow >;
18001800 row: TRow ;
You can’t perform that action at this time.
0 commit comments