adou-ui
Version:
feat:修复了TagInput无法清空的问题
17 lines (16 loc) • 505 B
TypeScript
import React from "react";
interface FormProps {
onSubmit?: () => void;
oneLine?: boolean;
data?: any;
children?: any;
labelColor?: string;
eachWordWidth?: number;
commonSuffixIcon?: any;
required?: boolean;
inline?: boolean;
labelPosition?: "center" | "top" | "left-top";
onFormDataChange?: (key: string, value: any) => void;
}
declare const Form: React.ForwardRefExoticComponent<FormProps & React.RefAttributes<unknown>>;
export default Form;