UNPKG

antd-mini

Version:

antd-mini 是支付宝小程序 UI 组件库,遵循 Ant Design 规范。

8 lines (7 loc) 354 B
import { ISwitchProps } from '../../Switch/props'; import { FormItemProps } from '../FormItem/props'; export interface FormSwitchProps extends Omit<ISwitchProps, 'checked' | 'defaultChecked'>, Omit<FormItemProps, 'readonly'> { switchClassName: string; switchStyle: string; } export declare const FormSwitchDefaultProps: Partial<FormSwitchProps>;