13 lines
298 B
TypeScript
13 lines
298 B
TypeScript
import type Footer from "../component/globalFooter";
|
|
import type Navbar from "../component/globalNavbar";
|
|
|
|
export default interface Global {
|
|
id: number;
|
|
documentId: string;
|
|
createdAt: string;
|
|
updatedAt: string;
|
|
publishedAt: string;
|
|
locale: string;
|
|
navbar: Navbar;
|
|
footer: Footer;
|
|
}
|