UNPKG

@adaptabletools/adaptable

Version:

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

17 lines (16 loc) 665 B
import * as React from 'react'; import { AdaptableApi } from '../../Api/AdaptableApi'; import { AdaptableModule } from '../../AdaptableState/Common/Types'; import { ColumnScope } from '../../AdaptableState/Common/ColumnScope'; interface EditorInputProps { type: 'boolean' | 'scalar' | 'aggregatedScalar' | 'cumulativeAggregatedScalar' | 'quantileAggregatedScalar'; module: AdaptableModule; value: string; onChange: (value: string) => void; api: AdaptableApi; testData: any; isFullExpression?: boolean; columnScope?: ColumnScope; } declare function EditorInput(props: EditorInputProps): React.JSX.Element; export default EditorInput;