UNPKG
bidasoa-components
Version:
latest (1.0.0)
1.0.0
Colección de componentes comunes empleados en proyectos Bidasoa.
bidasoa-components
/
dist
/
models
/
menus
/
MenuLink.d.ts
10 lines
(9 loc)
•
249 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
LinkConfiguration
}
from
'models/menus/LinkConfiguration'
;
export
interface
MenuLink
{
label
:
string
;
url
: {
path
:
string
; };
links
:
LinkConfiguration
[];
target
:
'_blank'
|
'_self'
|
'_parent'
|
'_top'
|
null
; }