/** * @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 { jobs } from '@angular-devkit/architect'; import { JsonValue } from '@angular-devkit/core'; import { Observable } from 'rxjs'; export declare class NodeModuleJobRegistry implements jobs.Registry { 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: jobs.JobName): Observable | null>; }