@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) • 563 B
TypeScript
import * as React from 'react';
import { AdaptableApi } from '../../Api/AdaptableApi';
import { AdaptableModule } from '../../AdaptableState/Common/Types';
interface EditorInputProps {
type: 'boolean' | 'scalar' | 'aggregatedScalar' | 'cumulativeAggregatedScalar' | 'quantileAggregatedScalar';
module: AdaptableModule;
value: string;
onChange: (value: string) => void;
testData: any;
isFullExpression?: boolean;
api: AdaptableApi;
}
declare function EditorInput(props: EditorInputProps): React.JSX.Element;
export default EditorInput;