UNPKG

cv-dialog-sdk

Version:

Catavolt Dialog Javascript API

11 lines (10 loc) 237 B
import { FilterOperator } from './types'; /** * ********************************* */ export interface Filter { readonly not: boolean; readonly operand1: any; readonly operator: FilterOperator; readonly operand2: any; }