Project

General

Profile

1 61381 k.triantaf
import { DivId } from './divId';
2
import {Portal} from './portal';
3
4
export interface DivHelpContent {
5
    _id: string;
6
    divId: DivId | string;
7
    portal: string | Portal;
8
    content: string;
9
    isActive: boolean;
10
}
11
12
export interface CheckDivHelpContent {
13
    divHelpContent : DivHelpContent;
14
    checked : boolean;
15
}
16
17
export interface DivHelpContentFilterOptions {
18
    id : string;
19
    active : Boolean;
20
    text : RegExp;
21
}