Add Type and Filter type definitions

Introduced a new `Type` definition with five string values: 'BOOLEAN', 'DATE', 'VARCHAR', 'INTEGER', and 'DECIMAL'. Added a `Filter` type that includes a `name` property and a `dataType` property of type `Type`.
This commit is contained in:
tekh 2025-07-03 14:08:10 +02:00
parent ada2e1cb72
commit 947257646d

View File

@ -0,0 +1,6 @@
export type Type = 'BOOLEAN' | 'DATE' | 'VARCHAR' | 'INTEGER' | 'DECIMAL';
export type Filter = {
name: string;
dataType: Type;
};