cli.d.ts 550 B

1234567891011121314151617181920
  1. export declare class Cli {
  2. static process: any;
  3. static commander: any;
  4. setup: {
  5. [key: string]: string | boolean;
  6. };
  7. processors: string[];
  8. dp: DOMParser;
  9. private output;
  10. constructor();
  11. set(arg: string, value: string | boolean, _def: string): void;
  12. processor(processor: string): void;
  13. private loadLocales;
  14. enumerate(all?: boolean): Promise<void>;
  15. execute(input: string): void;
  16. readline(): void;
  17. commandLine(): Promise<void>;
  18. private runProcessors_;
  19. private readExpression_;
  20. }