UNPKG

@adaptabletools/adaptable

Version:

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

13 lines (12 loc) 551 B
/// <reference types="react" /> import { ExpressionFunction } from '../../types'; export declare const ExpressionEditorContext: import("react").Context<{ textAreaRef: React.MutableRefObject<HTMLTextAreaElement>; selectedFunction: ExpressionFunction | null; setSelectedFunction: (fn: ExpressionFunction) => void; }>; export declare const useExpressionEditor: () => { textAreaRef: React.MutableRefObject<HTMLTextAreaElement>; selectedFunction: ExpressionFunction | null; setSelectedFunction: (fn: ExpressionFunction) => void; };