connect-admin/src/app/domain/divId.ts

13 lines
195 B
TypeScript

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