18 lines
300 B
TypeScript
18 lines
300 B
TypeScript
|
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;
|
||
|
}
|
||
|
*/
|