zent
Version:
一套前端设计语言和基于React的实现
6 lines (5 loc) • 317 B
TypeScript
/// <reference types="react" />
import { ISwitchProps } from '../../switch';
import { IFormComponentProps } from '../shared';
export declare type IFormSwitchFieldProps = IFormComponentProps<boolean, Omit<ISwitchProps, 'checked'>>;
export declare const FormSwitchField: React.FunctionComponent<IFormSwitchFieldProps>;