/** * @license * Copyright Google Inc. All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ import { Injector } from '@angular/core'; import { BrowserPlatformLocation } from '../../browser/location/browser_platform_location'; import { MessageBasedPlatformLocation } from './platform_location'; /** * A list of {@link Provider}s. To use the router in a Worker enabled application you must * include these providers when setting up the render thread. * @experimental */ export declare const WORKER_UI_LOCATION_PROVIDERS: (typeof MessageBasedPlatformLocation | typeof BrowserPlatformLocation | { provide: any; useFactory: (injector: Injector) => () => void; multi: boolean; deps: typeof Injector[]; })[];