projecte_ionic/node_modules/@angular/cli/commands/help.d.ts
2022-02-09 18:30:03 +01:00

17 lines
384 B
TypeScript
Executable file

/**
* Lists available commands and their short descriptions.
*/
export interface Schema {
/**
* Shows a help message for this command in the console.
*/
help?: HelpUnion;
}
/**
* Shows a help message for this command in the console.
*/
export declare type HelpUnion = boolean | HelpEnum;
export declare enum HelpEnum {
HelpJson = "JSON",
Json = "json"
}