@tarojsx/ui
Version:
We reinvents the UI for Taro3+
9 lines (8 loc) • 377 B
TypeScript
import React from 'react';
import { FormProps as _FormProps } from '@tarojs/components/types/Form';
export interface FormProps extends Omit<_FormProps, 'onSubmit'> {
/** onSubmit 事件节流时间间隔, 单位: ms, 默认 500ms. */
submitThrottle?: boolean | number;
onSubmit?(e: React.BaseSyntheticEvent): void;
}
export declare const Form: React.FC<FormProps>;