props.d.ts 336 B

1234567
  1. import { FormItemProps } from '../FormItem/props';
  2. import { ISwitchProps } from '../../Switch/props';
  3. export interface FormSwitchProps extends Omit<ISwitchProps, 'checked' | 'defaultChecked'>, FormItemProps {
  4. switchClassName: string;
  5. switchStyle: string;
  6. }
  7. export declare const FormSwitchDefaultProps: Partial<FormSwitchProps>;