UNPKG

384 BTypeScriptView Raw
1/**
2 * Lists available commands and their short descriptions.
3 */
4export 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 */
13export declare type HelpUnion = boolean | HelpEnum;
14export declare enum HelpEnum {
15 HelpJson = "JSON",
16 Json = "json"
17}