14 lines
213 B
TypeScript
14 lines
213 B
TypeScript
|
export type Link = {
|
||
|
url : string;
|
||
|
targetUrl : string;
|
||
|
name : string;
|
||
|
pao : number;
|
||
|
};
|
||
|
export type buttonLink = {
|
||
|
url : string;
|
||
|
name : string;
|
||
|
};
|
||
|
export type iconTopLink = {
|
||
|
url : string;
|
||
|
name : string;
|
||
|
};
|