8 lines
177 B
TypeScript
8 lines
177 B
TypeScript
import type FooterLink from "./itemsFooterLink";
|
|
|
|
export default interface Footer {
|
|
id: number;
|
|
copyright: string;
|
|
designed_developed_by: string;
|
|
links: FooterLink[];
|
|
}
|