UNPKG
ngx-obelisco-example
Version:
latest (1.5.0)
1.5.0
1.4.0
1.3.0
1.2.0
1.1.1
1.1.0
1.0.0
Componentes funcionales y reutilizables para Angular.
gcba.github.io/ngx-obelisco/
gcba/ngx-obelisco
ngx-obelisco-example
/
core
/
models
/
footer.models.d.ts
18 lines
(17 loc)
•
317 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export
interface
Phone
{
title
:
string
;
number
:
number
; }
export
interface
Network
{
title
:
string
;
src
:
string
;
icon
?:
string
; }
export
interface
Link
{
title
:
string
;
src
:
string
; }
export
interface
CustomContent
{
title
?:
string
;
content
?:
string
|
string
[]; }