Project

General

Profile

1
import {Page} from './page';
2
import {Entity} from './entity';
3

    
4
export interface Portal {
5
    _id: string;
6
    pid: string;
7
    name: string;
8
    type: string;
9
    entities: string[] | Entity[];
10
    pages: string[] | Page[];
11
}
12

    
13
export interface CheckPortal {
14
   community: Portal;
15
   checked: boolean;
16
}
(7-7/7)