/** * @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 { Observable } from 'rxjs'; import { JsonValue, experimental as core_experimental } from '../../../src'; export declare class NodeModuleJobRegistry implements core_experimental.jobs.Registry { private _resolveLocal; private _resolveGlobal; constructor(_resolveLocal?: boolean, _resolveGlobal?: boolean); protected _resolve(name: string): string | null; /** * Get a job description for a named job. * * @param name The name of the job. * @returns A description, or null if the job is not registered. */ get(name: core_experimental.jobs.JobName): Observable | null>; }