UNPKG

@adaptabletools/adaptable

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

11 lines (10 loc) 255 B
import { SuspendableObject } from '../../types'; /** * Defines a Grid Filter (essentially a Boolean Expression) */ export interface GridFilter extends SuspendableObject { /** * The (boolean) Expression to run */ Expression?: string; }