import {Page} from './page';
import {Community} from './community';
export interface DivId {
_id: string;
name: string;
pages: string[] | Page[];
community: string | Community;
}
export interface CheckDivId {
divId : DivId;
checked : boolean;