We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aaa2f8a commit 28da23eCopy full SHA for 28da23e
1 file changed
src/definition-schema.d.ts
@@ -14,7 +14,7 @@ export type RowHeight = string;
14
*/
15
export type RowBorder = string;
16
export type HeaderLabel = string;
17
-export type DataType = "state" | "string" | "number" | "boolean" | "button" | "image";
+export type ColumnType = "state" | "string" | "number" | "boolean" | "button" | "image";
18
export type DisplayValue = string;
19
export type LinkURL = string;
20
export type Values = {
@@ -45,7 +45,7 @@ export type CellBorder = string;
45
46
export type ColumnDefinitions = {
47
header?: HeaderLabel;
48
- type?: DataType;
+ type?: ColumnType;
49
values?: Values;
50
styling?: Styling;
51
[k: string]: unknown;
0 commit comments