argos/dmp-frontend/src/app/models/help-content/page-help-content.ts

25 lines
416 B
TypeScript
Raw Normal View History

2018-02-16 08:45:18 +01:00
/**
* Created by stefania on 7/13/17.
*/
2018-10-05 17:00:54 +02:00
import { Page } from './page';
2018-02-16 08:45:18 +01:00
export interface PageHelpContent {
2018-10-05 17:00:54 +02:00
_id: string;
page: Page | string;
placement: string;
order: number;
content: string;
isActive: boolean;
2018-02-16 08:45:18 +01:00
}
export interface CheckPageHelpContent {
2018-10-05 17:00:54 +02:00
pageHelpContent: PageHelpContent;
checked: boolean;
2018-02-16 08:45:18 +01:00
}
export interface PageHelpContentFilterOptions {
2018-10-05 17:00:54 +02:00
id: string;
active: Boolean;
text: RegExp;
}