UNPKG
@ducor/react
Version:
latest (5.1.9)
5.2.0
5.1.9
5.1.8
5.1.7
5.1.6
5.1.5
5.1.4
5.1.2
5.1.1
5.1.0
5.0.9
5.0.8
5.0.7
5.0.6
5.0.5
5.0.4
5.0.3
5.0.2
5.0.1
5.0.0
3.0.1
3.0.0
0.0.0
admin template ui interface
github.com/ducorui/ducor
ducorui/ducor
@ducor/react
/
dist
/
components
/
tree-view
/
group.d.ts
10 lines
(9 loc)
•
257 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
FC
,
ReactElement
,
ReactNode
}
from
"react"
;
interface
ItemGroupProps
{
children
?:
ReactElement
|
ReactNode
;
parentDept
:
number
;
parentPath
:
string
;
rect
:
any
; }
declare
const
ItemGroup
:
FC
<
ItemGroupProps
>;
export
default
ItemGroup
;