11 lines
146 B
TypeScript
11 lines
146 B
TypeScript
|
|
export type Link = {
|
||
|
|
url : string;
|
||
|
|
targetUrl : string;
|
||
|
|
name:string;
|
||
|
|
pao:number;
|
||
|
|
};
|
||
|
|
export type buttonLink = {
|
||
|
|
url : string;
|
||
|
|
name:string;
|
||
|
|
};
|