2019-12-18 16:14:21 +01:00
|
|
|
/**
|
|
|
|
* Created by stefania on 7/13/17.
|
|
|
|
*/
|
|
|
|
import { Page } from './page';
|
2020-10-30 15:01:44 +01:00
|
|
|
import { Portal } from './portal';
|
2019-12-18 16:14:21 +01:00
|
|
|
|
|
|
|
export interface PageHelpContent {
|
|
|
|
_id: string;
|
|
|
|
page: Page | string;
|
2020-09-24 13:18:24 +02:00
|
|
|
portal: Portal | string;
|
2019-12-18 16:14:21 +01:00
|
|
|
placement: string;
|
|
|
|
order: number;
|
|
|
|
content: string;
|
|
|
|
isActive: boolean;
|
|
|
|
isPriorTo: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface CheckPageHelpContent {
|
|
|
|
pageHelpContent: PageHelpContent;
|
|
|
|
checked: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface PageHelpContentFilterOptions {
|
|
|
|
id: string;
|
|
|
|
active: Boolean;
|
|
|
|
text: RegExp;
|
|
|
|
}
|