Skip to content

Commit 998291b

Browse files
committed
[null] Add null to Cell and Value type definitions
1 parent 5b89361 commit 998291b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/@types/store/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export type Table = {[rowId: Id]: Row};
5151
export type Row = {[cellId: Id]: Cell};
5252

5353
/// Cell
54-
export type Cell = string | number | boolean;
54+
export type Cell = string | number | boolean | null;
5555

5656
/// CellOrUndefined
5757
export type CellOrUndefined = Cell | undefined;
@@ -60,7 +60,7 @@ export type CellOrUndefined = Cell | undefined;
6060
export type Values = {[valueId: Id]: Value};
6161

6262
/// Value
63-
export type Value = string | number | boolean;
63+
export type Value = string | number | boolean | null;
6464

6565
/// ValueOrUndefined
6666
export type ValueOrUndefined = Value | undefined;

0 commit comments

Comments
 (0)