refactor(core): remove previously deprecated SystemJsComponentResolver and SystemJsCmpFactoryResolver

BREAKING CHANGE: previously deprecated SystemJsComponentResolver and SystemJsCmpFactoryResolver have been removed.

Please follow deprecation instructions to migrate your code.
This commit is contained in:
Igor Minar
2016-08-15 10:38:26 -07:00
committed by Vikram Subramanian
parent 231ed69507
commit b238414984
3 changed files with 0 additions and 89 deletions

View File

@ -1243,20 +1243,6 @@ export declare function style(tokens: string | {
[key: string]: string | number;
}>): AnimationStyleMetadata;
/** @deprecated */
export declare class SystemJsCmpFactoryResolver implements ComponentResolver {
constructor(_console: Console);
clearCache(): void;
resolveComponent(componentType: string | Type<any>): Promise<ComponentFactory<any>>;
}
/** @deprecated */
export declare class SystemJsComponentResolver implements ComponentResolver {
constructor(_resolver: ComponentResolver, _console: Console);
clearCache(): void;
resolveComponent(componentType: string | Type<any>): Promise<ComponentFactory<any>>;
}
/** @experimental */
export declare class SystemJsNgModuleLoader implements NgModuleFactoryLoader {
constructor(_compiler: Compiler);