docs(navController): make popTo private

Closes https://github.com/driftyco/ionic-site/issues/615
This commit is contained in:
mhartington
2016-07-29 12:46:16 -05:00
parent 36e8604ed9
commit 0a57213901

View File

@ -288,6 +288,7 @@ export abstract class NavController {
abstract popToRoot(opts?: NavOptions, done?: Function): Promise<any>;
/**
* @private
* Pop to a specific view in the history stack.
*
* @param {ViewController} view to pop to
@ -383,4 +384,4 @@ export abstract class NavController {
*/
abstract canGoBack(): boolean;
}
}