UNPKG

cv-dialog-sdk

Version:

Catavolt Dialog Javascript API

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