Project

General

Profile

1
import { DivId } from './divId';
2
import {Community} from './community';
3

    
4
export interface DivHelpContent {
5
    _id: string;
6
    divId: DivId | string;
7
    community: string | Community;
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
}
(2-2/7)