| 12345678910111213141516171819202122 |
- /**
- * Invokes the deploy builder for a specified project or for the default project in the
- * workspace.
- */
- export interface Schema {
- /**
- * Shows a help message for this command in the console.
- */
- help?: HelpUnion;
- /**
- * The name of the project to deploy.
- */
- project?: string;
- }
- /**
- * Shows a help message for this command in the console.
- */
- export declare type HelpUnion = boolean | HelpEnum;
- export declare enum HelpEnum {
- HelpJson = "JSON",
- Json = "json"
- }
|