Files
FarmMapsLib/projects/common/src/fm/models/query.state.ts
Mark van der Wal 2acf13cbac
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
datafilter can now be used with querystate
2022-10-24 13:23:33 +02:00

14 lines
258 B
TypeScript

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