UNPKG
@cause-911/material
Version:
latest (0.6.2)
0.6.2
0.6.1
0.6.0
0.5.9
0.5.8
0.5.7
0.5.6
0.5.5
0.5.4
0.5.3
0.5.2
0.5.1
0.4.1
0.4.0
Run `npm install @cause-911/material --save` to add this library to your project
cause911.ca
@cause-911/material
/
lib
/
shared
/
models
/
menu-item.d.ts
9 lines
(8 loc)
•
220 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
export
declare
class
MenuItem
{
label
:
string
;
path
:
string
;
icon
:
string
|
string
[];
activated
:
boolean
;
childs
:
MenuItem
[];
constructor
(
label
:
string
,
path
:
string
,
icon
?:
string
|
string
[]
); }