mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
doc(): update private
This commit is contained in:
@@ -37,12 +37,39 @@ export class App {
|
||||
*/
|
||||
appRoot: AppRoot;
|
||||
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
viewDidLoad: EventEmitter<any> = new EventEmitter();
|
||||
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
viewWillEnter: EventEmitter<any> = new EventEmitter();
|
||||
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
viewDidEnter: EventEmitter<any> = new EventEmitter();
|
||||
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
viewWillLeave: EventEmitter<any> = new EventEmitter();
|
||||
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
viewDidLeave: EventEmitter<any> = new EventEmitter();
|
||||
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
viewWillUnload: EventEmitter<any> = new EventEmitter();
|
||||
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
viewDidUnload: EventEmitter<any> = new EventEmitter();
|
||||
|
||||
constructor(
|
||||
@@ -150,7 +177,7 @@ export class App {
|
||||
}
|
||||
|
||||
/**
|
||||
* @private
|
||||
* retuns the root NavController
|
||||
*/
|
||||
getRootNav(): NavController {
|
||||
return this._rootNav;
|
||||
|
||||
@@ -5,6 +5,9 @@ import { isPresent } from '../../util/util';
|
||||
import { Platform } from '../../platform/platform';
|
||||
|
||||
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
@Component({
|
||||
selector: 'ion-img',
|
||||
template:
|
||||
@@ -148,4 +151,4 @@ function getUnitValue(val: any): string {
|
||||
}
|
||||
}
|
||||
return '';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -28,6 +28,9 @@ export interface GestureOptions {
|
||||
priority?: number;
|
||||
}
|
||||
|
||||
/**
|
||||
* @priavte
|
||||
*/
|
||||
@Injectable()
|
||||
export class GestureController {
|
||||
private id: number = 1;
|
||||
@@ -148,6 +151,9 @@ export class GestureController {
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* @priavte
|
||||
*/
|
||||
export class GestureDelegate {
|
||||
private disable: string[];
|
||||
private disableScroll: DisableScroll;
|
||||
@@ -223,4 +229,4 @@ export class GestureDelegate {
|
||||
}
|
||||
this.controller = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user