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:
parent
ada2e1cb72
commit
947257646d
6
src/client/dd-hub-react/src/api/filter-service.ts
Normal file
6
src/client/dd-hub-react/src/api/filter-service.ts
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
export type Type = 'BOOLEAN' | 'DATE' | 'VARCHAR' | 'INTEGER' | 'DECIMAL';
|
||||||
|
|
||||||
|
export type Filter = {
|
||||||
|
name: string;
|
||||||
|
dataType: Type;
|
||||||
|
};
|
||||||
Loading…
x
Reference in New Issue
Block a user