refactor(core): Remove deprecated DynamicComponentLoader (#10759)

BREAKING CHANGE: previously deprecated DynamicComponentLoader was removed; see deprecation notice for migration instructions.
This commit is contained in:
Chuck Jazdzewski
2016-08-15 16:07:19 -07:00
committed by vikerman
parent acc0fe6cf9
commit 4a9745ef78
5 changed files with 0 additions and 420 deletions

View File

@ -527,12 +527,6 @@ export declare abstract class DoCheck {
abstract ngDoCheck(): void;
}
/** @deprecated */
export declare abstract class DynamicComponentLoader {
abstract loadAsRoot(type: Type<any>, overrideSelectorOrNode: string | any, injector: Injector, onDispose?: () => void, projectableNodes?: any[][]): Promise<ComponentRef<any>>;
abstract loadNextToLocation(type: Type<any>, location: ViewContainerRef, providers?: ResolvedReflectiveProvider[], projectableNodes?: any[][]): Promise<ComponentRef<any>>;
}
/** @stable */
export declare class ElementRef {
/** @stable */ nativeElement: any;