diff options
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/tasks/package-manager/install-task.d.ts')
-rw-r--r-- | sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/tasks/package-manager/install-task.d.ts | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/tasks/package-manager/install-task.d.ts b/sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/tasks/package-manager/install-task.d.ts new file mode 100644 index 00000000..69924a69 --- /dev/null +++ b/sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/tasks/package-manager/install-task.d.ts @@ -0,0 +1,27 @@ +/** + * @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 { TaskConfiguration, TaskConfigurationGenerator } from '../../src'; +import { NodePackageTaskOptions } from './options'; +interface NodePackageInstallTaskOptions { + packageManager?: string; + packageName?: string; + workingDirectory?: string; + quiet?: boolean; + hideOutput?: boolean; +} +export declare class NodePackageInstallTask implements TaskConfigurationGenerator<NodePackageTaskOptions> { + quiet: boolean; + hideOutput: boolean; + workingDirectory?: string; + packageManager?: string; + packageName?: string; + constructor(workingDirectory?: string); + constructor(options: NodePackageInstallTaskOptions); + toConfiguration(): TaskConfiguration<NodePackageTaskOptions>; +} +export {}; |