UNPKG

ionic-framework

Version:

The ionic-framework package comes with both Javascript and Sass frontend dependencies, located in the root of the package, and a Node API, located in `tooling/`.

12 lines (11 loc) 283 B
import { Type } from 'angular2/core'; /** * @private * Map of possible pages that can be navigated to using an Ionic NavController */ export declare class NavRegistry { private _pages; constructor(pages?: Type[]); get(pageName: any): Type; set(page: any): void; }