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