easter-egg.d.ts 318 B

1234567891011121314
  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. }