UNPKG

react-filter-box-updated

Version:

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

10 lines (9 loc) 362 B
import Expression from './Expression'; import BaseAutoCompleteHandler from './BaseAutoCompleteHandler'; interface ValidationResult { isValid: boolean; message?: string; } declare const validateQuery: (parsedQuery: Expression[], autoCompleteHandler: BaseAutoCompleteHandler) => ValidationResult; export default validateQuery; export { ValidationResult };