UNPKG

@adaptabletools/adaptable

Version:

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

12 lines (11 loc) 323 B
import * as React from 'react'; import { FieldType } from './ThemeEditor'; export interface FieldProps { type: FieldType; name: string; value: string; variable: string; onChange: (newVal: string | false) => void; disabled: boolean; } export declare const Field: React.FunctionComponent<FieldProps>;