Files
FarmMapsLib/projects/common/src/fm/models/query.state.ts
Willem Dantuma 17af34ff94
All checks were successful
FarmMaps.Develop/FarmMapsLib/develop This commit looks good
Move query state to common
2020-02-19 11:15:31 +01:00

13 lines
234 B
TypeScript

export interface IQueryState {
itemCode: string;
parentCode: string;
level: number;
itemType: string;
query: string;
tags: string;
bboxFilter: boolean;
startDate: Date;
endDate: Date;
bbox: number[];
}