export interface IFieldGroup { key: string type: string group: boolean andOr: string fields: IField[] | IFieldGroup[] queryFeature?: any } export interface IField { key: string type: string group: boolean andOr: string name: string oper: string value: string[] | number[] | string queryFeature?: any }