link-task.d.ts 694 B

12345678910111213141516
  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. */
  8. import { TaskConfiguration, TaskConfigurationGenerator } from '../../src';
  9. import { NodePackageTaskOptions } from './options';
  10. export declare class NodePackageLinkTask implements TaskConfigurationGenerator<NodePackageTaskOptions> {
  11. packageName?: string | undefined;
  12. workingDirectory?: string | undefined;
  13. quiet: boolean;
  14. constructor(packageName?: string | undefined, workingDirectory?: string | undefined);
  15. toConfiguration(): TaskConfiguration<NodePackageTaskOptions>;
  16. }