source: trip-planner-front/node_modules/@angular-devkit/schematics/tasks/package-manager/install-task.d.ts@ 571e0df

Last change on this file since 571e0df was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 925 bytes
Line 
1/**
2 * @license
3 * Copyright Google LLC 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 { TaskConfiguration, TaskConfigurationGenerator } from '../../src';
9import { NodePackageTaskOptions } from './options';
10interface NodePackageInstallTaskOptions {
11 packageManager?: string;
12 packageName?: string;
13 workingDirectory?: string;
14 quiet?: boolean;
15 hideOutput?: boolean;
16}
17export declare class NodePackageInstallTask implements TaskConfigurationGenerator<NodePackageTaskOptions> {
18 quiet: boolean;
19 hideOutput: boolean;
20 workingDirectory?: string;
21 packageManager?: string;
22 packageName?: string;
23 constructor(workingDirectory?: string);
24 constructor(options: NodePackageInstallTaskOptions);
25 toConfiguration(): TaskConfiguration<NodePackageTaskOptions>;
26}
27export {};
Note: See TracBrowser for help on using the repository browser.