ff-webpage/types/single/global.ts

14 lines
286 B
TypeScript
Raw Normal View History

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