a zip code crypto-currency system good for red ONLY

navigation-container.d.ts 328B

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