7 lines
86 B
TypeScript
7 lines
86 B
TypeScript
export interface Link {
|
|
id: number;
|
|
text: string;
|
|
url: string;
|
|
svg: string;
|
|
}
|