chore: make TS enums strictly PascalCase (#26875)

This commit is contained in:
Ville Brofeldt
2024-01-31 17:40:44 -08:00
committed by GitHub
parent 959a5a5ad6
commit 19f8405bc0
362 changed files with 2002 additions and 2032 deletions

View File

@@ -29,7 +29,7 @@ export const columns = [
is_dttm: false,
python_date_format: null,
type: 'DOUBLE',
type_generic: GenericDataType.NUMERIC,
type_generic: GenericDataType.Numeric,
verbose_name: null,
},
{
@@ -43,7 +43,7 @@ export const columns = [
is_dttm: false,
python_date_format: null,
type: 'VARCHAR',
type_generic: GenericDataType.STRING,
type_generic: GenericDataType.String,
verbose_name: null,
},
{
@@ -56,7 +56,7 @@ export const columns = [
is_dttm: false,
python_date_format: null,
type: 'INT',
type_generic: GenericDataType.NUMERIC,
type_generic: GenericDataType.Numeric,
verbose_name: null,
},
];