7 lines
103 B
TypeScript
7 lines
103 B
TypeScript
|
export default interface FooterLink {
|
||
|
id: number;
|
||
|
text: string;
|
||
|
URL: string;
|
||
|
target: string;
|
||
|
}
|