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