UNPKG
antd-multi-asl-cascader-uppro
Version:
latest (1.0.1)
1.0.1
1.0.0
A multiple cascader component for antd
liuangshan/MultCascader
antd-multi-asl-cascader-uppro
/
src
/
index.d.ts
13 lines
(10 loc)
•
210 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
React
from
'react'
export
type
ValueType
=
any
export
type
TreeNode
= {
parent
?:
TreeNode
|
null
children
?:
TreeNode
[]
name
?:
string
value
:
string
label
:
React
.
ReactNode
isLeaf
?:
boolean
}