2019-12-18 16:14:21 +01:00
|
|
|
import { Page } from "./page";
|
2020-09-24 13:18:24 +02:00
|
|
|
import { Portal } from "./portal";
|
2019-12-18 16:14:21 +01:00
|
|
|
|
|
|
|
export interface HtmlPageContent {
|
|
|
|
_id: string;
|
|
|
|
page: Page | string;
|
2020-10-30 15:01:44 +01:00
|
|
|
community: Portal | string;
|
2019-12-18 16:14:21 +01:00
|
|
|
content: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface CheckHtmlPageContent {
|
|
|
|
pageHelpContent: HtmlPageContent;
|
|
|
|
checked: boolean;
|
|
|
|
}
|