ff-webpage/types/single/global.ts

18 lines
465 B
TypeScript
Raw Normal View History

2025-02-14 13:57:55 +01:00
import type BaseFile from "../component/baseFile";
import type Footer from "../component/global/footer";
import type Navbar from "../component/global/navbar";
import type SEO from "../component/global/seo";
2024-11-01 14:15:09 +01:00
export default interface Global {
id: number;
documentId: string;
createdAt: string;
updatedAt: string;
publishedAt: string;
locale: string;
2025-02-14 13:57:55 +01:00
logo: BaseFile;
navbar: Navbar | undefined;
footer: Footer | undefined;
SEO: SEO | undefined;
2024-11-01 14:15:09 +01:00
}