Last change
on this file since fa375fe was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
883 bytes
|
Line | |
---|
1 | /**
|
---|
2 | * Invokes the deploy builder for a specified project or for the default project in the
|
---|
3 | * workspace.
|
---|
4 | */
|
---|
5 | export interface Schema {
|
---|
6 | /**
|
---|
7 | * One or more named builder configurations as a comma-separated list as specified in the
|
---|
8 | * "configurations" section of angular.json.
|
---|
9 | * The builder uses the named configurations to run the given target.
|
---|
10 | * For more information, see
|
---|
11 | * https://angular.io/guide/workspace-config#alternate-build-configurations.
|
---|
12 | */
|
---|
13 | configuration?: string;
|
---|
14 | /**
|
---|
15 | * Shows a help message for this command in the console.
|
---|
16 | */
|
---|
17 | help?: HelpUnion;
|
---|
18 | /**
|
---|
19 | * The name of the project to deploy.
|
---|
20 | */
|
---|
21 | project?: string;
|
---|
22 | }
|
---|
23 | /**
|
---|
24 | * Shows a help message for this command in the console.
|
---|
25 | */
|
---|
26 | export declare type HelpUnion = boolean | HelpEnum;
|
---|
27 | export declare enum HelpEnum {
|
---|
28 | HelpJson = "JSON",
|
---|
29 | Json = "json"
|
---|
30 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.