18 lines
321 B
TypeScript
18 lines
321 B
TypeScript
import {Page} from './page';
|
|
import {Entity} from './entity';
|
|
|
|
export interface Portal {
|
|
_id: string;
|
|
pid: string;
|
|
name: string;
|
|
type: string;
|
|
piwik:number;
|
|
entities: string[] | Entity[];
|
|
pages: string[] | Page[];
|
|
}
|
|
|
|
export interface CheckPortal {
|
|
community: Portal;
|
|
checked: boolean;
|
|
}
|