UNPKG

@adaptabletools/adaptable

Version:

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

12 lines (11 loc) 362 B
import * as React from 'react'; import { AdaptableColumnDataType } from '../../../types'; interface FieldSelectorProps { value: string; onChange: (fieldExp: string) => void; type?: AdaptableColumnDataType; disabled?: boolean; placeholder?: string; } export declare const FieldSelector: React.FunctionComponent<FieldSelectorProps>; export {};