refactor(ApplicationRef): remove all previously deprecated ApplicationRef apis

BREAKING CHANGE: All previously deprecated ApplicationRef apis have been removed.

Please follow the deprecation instructions to migrate your code.
This commit is contained in:
Igor Minar
2016-08-12 15:52:58 -07:00
committed by Vikram Subramanian
parent 44e1b23813
commit f84c3fdc5f
3 changed files with 0 additions and 138 deletions

View File

@ -147,15 +147,8 @@ export declare class ApplicationModule {
export declare abstract class ApplicationRef {
componentTypes: Type<any>[];
components: ComponentRef<any>[];
/** @deprecated */ injector: Injector;
/** @deprecated */ zone: NgZone;
abstract bootstrap<C>(componentFactory: ComponentFactory<C> | Type<C>): ComponentRef<C>;
/** @deprecated */ abstract dispose(): void;
/** @deprecated */ abstract registerBootstrapListener(listener: (ref: ComponentRef<any>) => void): void;
/** @deprecated */ abstract registerDisposeListener(dispose: () => void): void;
/** @deprecated */ abstract run(callback: Function): any;
abstract tick(): void;
/** @deprecated */ abstract waitForAsyncInitializers(): Promise<any>;
}
/** @experimental */