import { CriteriaProcessType } from './criteriaProcessType'; export interface ICriteriaChangeOperator { name: string; value: any; type: any; _type: keyof CriteriaProcessType; hidden?: boolean; reverse?: boolean; localizationId?: string; insertVal?: string; displayText?: string; paramCount?: number; emptyRightPart?: boolean; }