We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b89361 commit 998291bCopy full SHA for 998291b
src/@types/store/index.d.ts
@@ -51,7 +51,7 @@ export type Table = {[rowId: Id]: Row};
51
export type Row = {[cellId: Id]: Cell};
52
53
/// Cell
54
-export type Cell = string | number | boolean;
+export type Cell = string | number | boolean | null;
55
56
/// CellOrUndefined
57
export type CellOrUndefined = Cell | undefined;
@@ -60,7 +60,7 @@ export type CellOrUndefined = Cell | undefined;
60
export type Values = {[valueId: Id]: Value};
61
62
/// Value
63
-export type Value = string | number | boolean;
+export type Value = string | number | boolean | null;
64
65
/// ValueOrUndefined
66
export type ValueOrUndefined = Value | undefined;
0 commit comments