UNPKG

antd-mobile

Version:

基于 React 的移动设计规范实现

18 lines (17 loc) 475 B
/// <reference types="react" /> import React from 'react'; import SwitchProps from './PropsType'; export default class Switch extends React.Component<SwitchProps, any> { static defaultProps: { prefixCls: string; name: string; checked: boolean; disabled: boolean; onChange(): void; platform: string; onClick(): void; }; onChange: (e: any) => void; onClick: (e: any) => void; render(): JSX.Element; }