UNPKG

873 BTypeScriptView Raw
1/**
2 * @license
3 * Copyright Google Inc. All Rights Reserved.
4 *
5 * Use of this source code is governed by an MIT-style license that can be
6 * found in the LICENSE file at https://angular.io/license
7 */
8import { BuilderContext, BuilderOutput } from '@angular-devkit/architect';
9import { Observable } from 'rxjs';
10import { Schema } from './schema';
11/** @deprecated Since 10.1 use `NgPackagrBuilderOptions` from `@angular-devkit/build-angular` instead. */
12export declare type NgPackagrBuilderOptions = Schema;
13/** @deprecated Since 10.1 use `executeNgPackagrBuilder` from `@angular-devkit/build-angular` instead. */
14export declare function execute(options: NgPackagrBuilderOptions, context: BuilderContext): Observable<BuilderOutput>;
15declare const _default: import("@angular-devkit/architect/src/internal").Builder<Record<string, string> & Schema>;
16export default _default;