@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
8 lines (7 loc) • 484 B
TypeScript
import { ExpressionFunction } from '../../parser/src/types';
/**
* List of all the Observable Functions available in AdaptableQL
*/
export type ObservableFunctionName = 'WHERE' | 'COL' | 'TIMEFRAME' | 'ROW_CHANGE' | 'ROW_ADDED' | 'GRID_CHANGE' | 'ROW_REMOVED' | 'MAX' | 'MIN' | 'NONE' | 'COUNT';
export declare const observableExpressionFunctions: Record<ObservableFunctionName, ExpressionFunction>;
export declare const observableExpressionFunctionNames: ObservableFunctionName[];