14 lines
286 B
TypeScript
14 lines
286 B
TypeScript
|
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;
|
||
|
}
|