UNPKG

react-filter-box

Version:

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

9 lines (8 loc) 406 B
import BaseResultProcessing from "./BaseResultProcessing"; import { Option } from "./GridDataAutoCompleteHandler"; export default class SimpleResultProcessing extends BaseResultProcessing { protected options?: Option[]; constructor(options?: Option[]); tryToGetFieldCategory(fieldOrLabel: string): string; filter(row: any, fieldOrLabel: string, operator: string, value: string): boolean; }