Last change
on this file since bdd6491 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
932 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 | */
|
---|
8 | import { ArchitectCommand } 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 = "\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 | initialize(options: DeployCommandSchema & Arguments): Promise<number | void>;
|
---|
15 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.