UNPKG

@fakel/rest-admin

Version:

An application that makes it easier to work with your API

9 lines (8 loc) 291 B
import React from 'react'; import { FormItemProps } from 'antd/lib/form'; import { InputProps } from './Input'; interface SwitchInputProps extends InputProps { defaultChecked?: boolean; } declare const SwitchInput: React.FC<SwitchInputProps & FormItemProps>; export default SwitchInput;