UNPKG

738 BTypeScriptView Raw
1/**
2 * Invokes the deploy builder for a specified project or for the default project in the
3 * workspace.
4 */
5export interface Schema {
6 /**
7 * A named build target, as specified in the "configurations" section of angular.json.
8 * Each named target is accompanied by a configuration of option defaults for that target.
9 */
10 configuration?: string;
11 /**
12 * Shows a help message for this command in the console.
13 */
14 help?: HelpUnion;
15 /**
16 * The name of the project to deploy.
17 */
18 project?: string;
19}
20/**
21 * Shows a help message for this command in the console.
22 */
23export declare type HelpUnion = boolean | HelpEnum;
24export declare enum HelpEnum {
25 HelpJson = "JSON",
26 Json = "json"
27}