Add upgrade-static.umd.js bundles This allows depending on it without getting a transitive dependency on compiler. BREAKING CHANGE: Four newly added APIs in 2.2.0-beta: downgradeComponent, downgradeInjectable, UpgradeComponent, and UpgradeModule are no longer exported by @angular/upgrade. Import these from @angular/upgrade/static instead.
23 lines
792 B
TypeScript
23 lines
792 B
TypeScript
/** @experimental */
|
|
export declare function downgradeComponent(info: ComponentInfo): angular.IInjectable;
|
|
|
|
/** @experimental */
|
|
export declare function downgradeInjectable(token: any): (string | ((i: Injector) => any))[];
|
|
|
|
/** @experimental */
|
|
export declare class UpgradeComponent implements OnInit, OnChanges, DoCheck {
|
|
constructor(name: string, elementRef: ElementRef, injector: Injector);
|
|
ngDoCheck(): void;
|
|
ngOnChanges(changes: SimpleChanges): void;
|
|
ngOnInit(): void;
|
|
}
|
|
|
|
/** @experimental */
|
|
export declare class UpgradeModule {
|
|
$injector: angular.IInjectorService;
|
|
injector: Injector;
|
|
ngZone: NgZone;
|
|
constructor(injector: Injector, ngZone: NgZone);
|
|
bootstrap(element: Element, modules?: string[], config?: angular.IAngularBootstrapConfig): void;
|
|
}
|