UNPKG

react-querybuilder

Version:

React Query Builder component for constructing queries and filters, with utilities for executing them in various database and evaluation contexts

14 lines (13 loc) 531 B
import type { RuleGroupType, RuleGroupTypeAny, RuleGroupTypeIC } from "../types/index.noReact.mjs"; /** * Determines if an object is a {@link RuleGroupType} or {@link RuleGroupTypeIC}. */ export declare const isRuleGroup: (rg: any) => rg is RuleGroupTypeAny; /** * Determines if an object is a {@link RuleGroupType}. */ export declare const isRuleGroupType: (rg: any) => rg is RuleGroupType; /** * Determines if an object is a {@link RuleGroupTypeIC}. */ export declare const isRuleGroupTypeIC: (rg: any) => rg is RuleGroupTypeIC;