ff-webpage/types/single/global.ts

16 lines
378 B
TypeScript
Raw Normal View History

import type Footer from "../component/globalFooter";
import type Navbar from "../component/globalNavbar";
2025-01-05 18:31:55 +01:00
import type SEOComponent from "../component/seoComponent";
2024-11-01 14:15:09 +01:00
export default interface Global {
id: number;
documentId: string;
createdAt: string;
updatedAt: string;
publishedAt: string;
locale: string;
navbar: Navbar;
footer: Footer;
2025-01-05 18:31:55 +01:00
SEO: SEOComponent;
2024-11-01 14:15:09 +01:00
}