import {Page} from './page'; import {Entity} from './entity'; export interface Community { _id: string; pid: string; name: string; entities: string[] | Entity[]; pages: string[] | Page[]; } export interface CheckCommunity { community : Community; checked : boolean; }