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:
318 bytes
|
Line | |
---|
1 | export 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 | */
|
---|
10 | export declare type HelpUnion = boolean | HelpEnum;
|
---|
11 | export declare enum HelpEnum {
|
---|
12 | HelpJson = "JSON",
|
---|
13 | Json = "json"
|
---|
14 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.