version.d.ts 358 B

1234567891011121314151617
  1. /**
  2. * Outputs Angular CLI version.
  3. */
  4. export interface Schema {
  5. /**
  6. * Shows a help message for this command in the console.
  7. */
  8. help?: HelpUnion;
  9. }
  10. /**
  11. * Shows a help message for this command in the console.
  12. */
  13. export declare type HelpUnion = boolean | HelpEnum;
  14. export declare enum HelpEnum {
  15. HelpJson = "JSON",
  16. Json = "json"
  17. }