UNPKG

508 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 * Shows a help message for this command in the console.
8 */
9 help?: HelpUnion;
10 /**
11 * The name of the project to deploy.
12 */
13 project?: string;
14}
15/**
16 * Shows a help message for this command in the console.
17 */
18export declare type HelpUnion = boolean | HelpEnum;
19export declare enum HelpEnum {
20 HelpJson = "JSON",
21 Json = "json"
22}