vantui-edit
Version:
一套适用于Taro3及React的vantui组件库
19 lines (15 loc) • 435 B
TypeScript
import { FunctionComponent } from 'react'
import { ITouchEvent, ViewProps } from '@tarojs/components'
export interface SwitchProps extends ViewProps {
checked?: boolean
loading?: boolean
disabled?: boolean
activeColor?: string
inactiveColor?: string
size?: string
activeValue?: any
inactiveValue?: any
onChange?: (event: ITouchEvent) => any
}
declare const Switch: FunctionComponent<SwitchProps>
export { Switch }