UNPKG

490 BPlain TextView Raw
1export interface PageInterface {
2 name: string;
3 id: string;
4 navTabs?: any[];
5 filename?: string;
6 context: string;
7 path?: string;
8 module?: any;
9 pipe?: any;
10 class?: any;
11 interface?: any;
12 directive?: any;
13 injectable?: any;
14 additionalPage?: any;
15 files?: any;
16 data?: any;
17 depth?: number;
18 pageType?: string;
19 component?: any;
20 markdown?: string;
21 childrenLength?: number;
22 children?: any[];
23 lastChild?: boolean;
24}