refactor(core): remove deprecated 'bootstrap' (#10831)

This commit is contained in:
Victor Savkin
2016-08-16 11:15:01 -07:00
committed by vikerman
parent f6a7d6504c
commit f7ff6c5a12
51 changed files with 426 additions and 418 deletions

View File

@ -45,8 +45,6 @@ export abstract class ChangeDetectorRef {
* })
* class App {
* }
*
* bootstrap(App);
* ```
*/
abstract markForCheck(): void;
@ -104,8 +102,6 @@ export abstract class ChangeDetectorRef {
* })
* class App {
* }
*
* bootstrap(App);
* ```
*/
abstract detach(): void;
@ -195,8 +191,6 @@ export abstract class ChangeDetectorRef {
* class App {
* live = true;
* }
*
* bootstrap(App);
* ```
*/
abstract reattach(): void;