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