Last change
on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
384 bytes
|
Rev | Line | |
---|
[6a3a178] | 1 | /**
|
---|
| 2 | * Lists available commands and their short descriptions.
|
---|
| 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 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.