fx-form-widget
Version:
14 lines (13 loc) • 320 B
TypeScript
import React from 'react';
import './index.less';
interface InputProps {
schema?: any;
onChange: (val: string) => void;
onCheck?: (checkItem: {
fieldName: string;
value: string;
}) => void;
value: string;
}
declare const InputWidget: React.FC<InputProps>;
export default InputWidget;