Skip to content

Commit 28da23e

Browse files
author
Marko Petzold
committed
fix: rename "DataType" to "ColumnType" in definition schema for consistency
1 parent aaa2f8a commit 28da23e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/definition-schema.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export type RowHeight = string;
1414
*/
1515
export type RowBorder = string;
1616
export type HeaderLabel = string;
17-
export type DataType = "state" | "string" | "number" | "boolean" | "button" | "image";
17+
export type ColumnType = "state" | "string" | "number" | "boolean" | "button" | "image";
1818
export type DisplayValue = string;
1919
export type LinkURL = string;
2020
export type Values = {
@@ -45,7 +45,7 @@ export type CellBorder = string;
4545
*/
4646
export type ColumnDefinitions = {
4747
header?: HeaderLabel;
48-
type?: DataType;
48+
type?: ColumnType;
4949
values?: Values;
5050
styling?: Styling;
5151
[k: string]: unknown;

0 commit comments

Comments
 (0)