import { ValueComparisonType } from "../enum/value-comparison-type.enum"; import { SearchDataType } from "../enum/search-data-type.enum"; import { SearchPropertyState } from "../enum/search-property-state.enum"; export interface SearchProperty { property?: string; label?: string; values?: string[]; comparisonType?: ValueComparisonType; dataType?: SearchDataType; state?: SearchPropertyState; }