Skip to content

Commit

Permalink
fix: add null as cell type
Browse files Browse the repository at this point in the history
Merge pull request #388 from afholderman/issue/add_null_as_cell_type
  • Loading branch information
rakannimer committed Sep 22, 2024
2 parents 2d91574 + 5984d89 commit 07487d1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,8 @@ export type GoogleDataTableCell =
| string
| number
| boolean
| Date;
| Date
| null;

export type GoogleDataTableRow = GoogleDataTableCell[];

Expand Down

0 comments on commit 07487d1

Please sign in to comment.