Move query state to common
All checks were successful
FarmMaps.Develop/FarmMapsLib/develop This commit looks good

This commit is contained in:
Willem Dantuma
2020-02-19 11:15:31 +01:00
parent 3baf0b15c7
commit 17af34ff94
3 changed files with 67 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
export interface IQueryState {
itemCode: string;
parentCode: string;
level: number;
itemType: string;
query: string;
tags: string;
bboxFilter: boolean;
startDate: Date;
endDate: Date;
bbox: number[];
}