Project

General

Profile

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

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

    
12
export interface CheckCommunity {
13
   community: Community;
14
   checked: boolean;
15
}
(1-1/7)