UNPKG

react-openfin-mat-impl

Version:
13 lines (12 loc) 324 B
import * as React from 'react'; import { FieldType } from 'react-openfin'; interface IProps { _type: FieldType; _label: string; _props?: any; _custom?: any; value: any; onChange?: (value: any) => void; } declare const ConfigFieldComp: React.FunctionComponent<IProps>; export default ConfigFieldComp;