Skip to content

Commit

Permalink
Merge pull request #388 from afholderman/issue/add_null_as_cell_type
Browse files Browse the repository at this point in the history
add null as cell type
  • Loading branch information
rakannimer authored Sep 22, 2024
2 parents 2d91574 + 5984d89 commit 5d61b25
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 5d61b25

Please sign in to comment.