run.d.ts 713 B

123456789101112131415161718192021222324252627
  1. /**
  2. * Runs an Architect target with an optional custom builder configuration defined in your
  3. * project.
  4. */
  5. export interface Schema {
  6. /**
  7. * A named builder configuration, defined in the "configurations" section of angular.json.
  8. * The builder uses the named configuration to run the given target.
  9. */
  10. configuration?: string;
  11. /**
  12. * Shows a help message for this command in the console.
  13. */
  14. help?: HelpUnion;
  15. /**
  16. * The Architect target to run.
  17. */
  18. target?: string;
  19. }
  20. /**
  21. * Shows a help message for this command in the console.
  22. */
  23. export declare type HelpUnion = boolean | HelpEnum;
  24. export declare enum HelpEnum {
  25. HelpJson = "JSON",
  26. Json = "json"
  27. }