/** * @license * Copyright Google LLC 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 { Observable } from 'rxjs'; import { JsonValue } from '../../json'; import { JobHandler, JobName, Registry } from './api'; /** * A simple job registry that keep a map of JobName => JobHandler internally. */ export declare class FallbackRegistry implements Registry { protected _fallbacks: Registry[]; constructor(_fallbacks?: Registry[]); addFallback(registry: Registry): void; get(name: JobName): Observable | null>; }