ff-webpage/types/single/global.ts

16 lines
378 B
TypeScript
Raw Permalink Normal View History

import type Footer from "../component/globalFooter";
import type Navbar from "../component/globalNavbar";
2025-01-05 17:31:55 +00:00
import type SEOComponent from "../component/seoComponent";
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;
2025-01-05 17:31:55 +00:00
SEO: SEOComponent;
2024-11-01 13:15:09 +00:00
}