Skip to content

Commit

Permalink
add null as cell type
Browse files Browse the repository at this point in the history
  • Loading branch information
afholderman committed Jan 9, 2021
1 parent 288ce66 commit 5984d89
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 @@ -303,7 +303,8 @@ export type GoogleDataTableCell =
| string
| number
| boolean
| Date;
| Date
| null;

export type GoogleDataTableRow = GoogleDataTableCell[];

Expand Down

0 comments on commit 5984d89

Please sign in to comment.