UNPKG

react-filter-box

Version:

Conditional filter supports OR/AND, bracket, Highlighting, Autocomplete, and high extensibility

9 lines (8 loc) 184 B
interface Expression { conditionType?: "OR" | "AND"; category?: string; operator?: string; value?: string; expressions?: Expression[]; } export default Expression;