UNPKG
antd-mobile-alita
Version:
latest (2.3.4)
2.3.4
基于 React 的移动设计规范实现
mobile.ant.design
ant-design/ant-design-mobile
antd-mobile-alita
/
lib
/
switch
/
PropsType.d.ts
9 lines
(8 loc)
•
209 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
export
interface
SwitchPropsType
{
checked
?:
boolean
;
disabled
?:
boolean
;
onChange
?:
(
checked
:
boolean
) =>
void
;
color
?:
string
;
name
?:
string
;
onClick
?:
(
checked
?:
boolean
) =>
void
; }