added new file

This commit is contained in:
Jun-te Kim 2025-12-08 13:53:54 +00:00
parent d5d4a4cc27
commit 3c5dc722ef

View file

@ -0,0 +1,19 @@
export type FilterField =
| "address"
| "postcode"
| "status"
| "currentEpcRating"
| "currentSapPoints";
export type FilterOperator =
| "contains"
| "starts_with"
| "equals"
| "gte"
| "lte";
export interface PropertyFilter {
field: FilterField;
operator: FilterOperator;
value: string;
}