UNPKG
xui
Version:
latest (1.41.1)
1.41.1
1.40.2
1.40.1
1.40.0
1.39.0
1.38.0
1.37.2
xUI Components for Angular
xuijs.org
rikarin/xui
xui
/
drawer
/
drawer.types.d.ts
8 lines
(7 loc)
•
168 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
export
type
DrawerMode
=
'overlay'
|
'push'
;
export
interface
DrawerItem
{
label
:
string
;
icon
?:
string
;
expanded
?:
boolean
;
children
?:
DrawerItem
[]; }