deploy.d.ts 508 B

12345678910111213141516171819202122
  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. * 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. */
  18. export declare type HelpUnion = boolean | HelpEnum;
  19. export declare enum HelpEnum {
  20. HelpJson = "JSON",
  21. Json = "json"
  22. }