docs(nav): make inputs private

This commit is contained in:
mhartington
2016-02-01 22:42:23 -05:00
parent f47c3c3398
commit a913e3e084

View File

@ -24,6 +24,7 @@ import {ViewController} from './view-controller';
* component) to be loaded initially by any Nav you create, using * component) to be loaded initially by any Nav you create, using
* the 'root' property: * the 'root' property:
* *
* @usage
* ```ts * ```ts
* import {GettingStartedPage} from 'getting-started'; * import {GettingStartedPage} from 'getting-started';
* @App({ * @App({
@ -104,7 +105,15 @@ import {ViewController} from './view-controller';
template: '<div #contents></div>' template: '<div #contents></div>'
}) })
export class Nav extends NavController { export class Nav extends NavController {
/**
* @private
*/
@Input() root: Type; @Input() root: Type;
/**
* @private
*/
@Input() swipeBackEnabled: any; @Input() swipeBackEnabled: any;
constructor( constructor(