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