UNPKG

rjsf-antd

Version:

Ant Design theme, fields and widgets for react-jsonschema-form

8 lines (7 loc) 357 B
/// <reference types="react" /> import { WidgetProps } from 'react-jsonschema-form'; declare type CustomWidgetProps = WidgetProps & { options: any; }; declare const TextareaWidget: ({ id, placeholder, value, required, disabled, autofocus, readonly, onBlur, onFocus, onChange, options }: CustomWidgetProps) => JSX.Element; export default TextareaWidget;