deploy-impl.d.ts 1.2 KB

1234567891011121314151617
  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 { ArchitectCommand, ArchitectCommandOptions } from '../models/architect-command';
  9. import { Arguments } from '../models/interface';
  10. import { Schema as DeployCommandSchema } from './deploy';
  11. export declare class DeployCommand extends ArchitectCommand<DeployCommandSchema> {
  12. readonly target = "deploy";
  13. readonly missingTargetError = "\n\nCannot find \"deploy\" target for the specified project.\n\nYou should add a package that implements deployment capabilities for your\nfavorite platform.\n\nFor example:\n ng add @angular/fire\n ng add @azure/ng-deploy\n ng add @zeit/ng-deploy\n\nFind more packages on npm https://www.npmjs.com/search?q=ng%20deploy\n";
  14. run(options: ArchitectCommandOptions & Arguments): Promise<number>;
  15. initialize(options: DeployCommandSchema & Arguments): Promise<void>;
  16. reportAnalytics(paths: string[], options: DeployCommandSchema & Arguments, dimensions?: (boolean | number | string)[], metrics?: (boolean | number | string)[]): Promise<void>;
  17. }