mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
10 lines
355 B
TypeScript
10 lines
355 B
TypeScript
/** @experimental */
|
|
export declare const RouterUpgradeInitializer: {
|
|
provide: InjectionToken<((compRef: ComponentRef<any>) => void)[]>;
|
|
multi: boolean;
|
|
useFactory: (ngUpgrade: UpgradeModule) => () => void;
|
|
deps: (typeof UpgradeModule)[];
|
|
};
|
|
|
|
/** @experimental */
|
|
export declare function setUpLocationSync(ngUpgrade: UpgradeModule): void;
|