link-task.d.ts 769 B

12345678910111213141516171819
  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.dev/license
  7. */
  8. import { TaskConfiguration, TaskConfigurationGenerator } from '../../src';
  9. import { NodePackageTaskOptions } from './options';
  10. /**
  11. * @deprecated since version 18. Create a custom task if required.
  12. */
  13. export declare class NodePackageLinkTask implements TaskConfigurationGenerator<NodePackageTaskOptions> {
  14. packageName?: string | undefined;
  15. workingDirectory?: string | undefined;
  16. quiet: boolean;
  17. constructor(packageName?: string | undefined, workingDirectory?: string | undefined);
  18. toConfiguration(): TaskConfiguration<NodePackageTaskOptions>;
  19. }