UNPKG

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