ff-webpage/types/single/global.ts

14 lines
298 B
TypeScript
Raw Normal View History

import type Footer from "../component/globalFooter";
import type Navbar from "../component/globalNavbar";
2024-11-01 13:15:09 +00:00
export default interface Global {
id: number;
documentId: string;
createdAt: string;
updatedAt: string;
publishedAt: string;
locale: string;
navbar: Navbar;
footer: Footer;
}