2019-12-18 16:14:21 +01:00
|
|
|
import { Entity } from './entity';
|
|
|
|
|
|
|
|
export interface Page {
|
|
|
|
_id: string;
|
|
|
|
route: string;
|
|
|
|
name: string;
|
|
|
|
type: string;
|
|
|
|
isEnabled: boolean;
|
2020-09-24 13:18:24 +02:00
|
|
|
portalType: string;
|
2022-01-11 11:05:40 +01:00
|
|
|
portalPid: string;
|
2019-12-18 16:14:21 +01:00
|
|
|
entities: Entity[] | string[];
|
|
|
|
top: boolean;
|
|
|
|
bottom: boolean;
|
|
|
|
left: boolean;
|
|
|
|
right: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface CheckPage {
|
|
|
|
page: Page;
|
|
|
|
checked: boolean;
|
|
|
|
}
|