15 lines
264 B
TypeScript
15 lines
264 B
TypeScript
|
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;
|
||
|
}
|