react-openfin-mat-impl
Version:
Materialize UI implementation of react-openfin
13 lines (12 loc) • 324 B
TypeScript
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;