import { IAttributes } from "./IAttributes"; import { IBase } from "./IBase"; import { IAsset } from "./ISection"; export interface IPage extends IBase { name?: string; order?: number; type: string; status?: string; showNavbar?: boolean; wallpaper?: IWallpaper; attributes?: IAttributes; url?: string; } export interface IWallpaper extends IBase { asset: IAsset; attributes: IAttributes; type?: string; }