import { FilterType } from "../enum/filter-type.enum"; export interface FilterProperty { property?: string; label?: string; type?: FilterType; active?: boolean; valuePass?: any; evalFunction?: any; }