UNPKG
taro-manage-layout
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
0.0.1
简洁移动办公框架
gitee.com/niu-xiaonai/taro-manage-layout.git
taro-manage-layout
/
types
/
src
/
checkbox
/
index.d.ts
8 lines
(7 loc)
•
238 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
React
from
"react"
;
export
type
CheckedProps
= {
checked
:
boolean
;
part
?:
boolean
;
onChange
:
(
state
:
boolean
) =>
void
; };
export
declare
const
CheckBox
:
(
{ checked, part, onChange }:
CheckedProps
) =>
React
.
JSX
.
Element
;