@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
15 lines (14 loc) • 556 B
TypeScript
import * as React from 'react';
import { AdaptableApi } from '../../Api/AdaptableApi';
import { AdaptableModule } from '../../AdaptableState/Common/Types';
interface EditorInputWithWhereClauseProps {
type: 'observable' | 'aggregatedBoolean';
module: AdaptableModule;
value: string;
onChange: (value: string) => void;
testData: any;
isFullExpression?: boolean;
api: AdaptableApi;
}
declare function EditorInputWithWhereClause(props: EditorInputWithWhereClauseProps): React.JSX.Element;
export default EditorInputWithWhereClause;