UNPKG

328 BTypeScriptView Raw
1import { NavController } from './nav-controller';
2/**
3 * @hidden
4 */
5export interface NavigationContainer {
6 id: string;
7 name: string;
8 parent: NavController;
9 getActiveChildNavs(): NavigationContainer[];
10 getAllChildNavs?(): NavigationContainer[];
11 getType(): string;
12 getSecondaryIdentifier(): string;
13}