environment.js 516 B

1234567891011121314151617
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.Environment = void 0;
  4. class Environment {
  5. constructor({ client, config, flags, getInfo, log, ctx, prompt, session, shell }) {
  6. this.client = client;
  7. this.config = config;
  8. this.flags = flags;
  9. this.getInfo = getInfo;
  10. this.log = log;
  11. this.ctx = ctx;
  12. this.prompt = prompt;
  13. this.session = session;
  14. this.shell = shell;
  15. }
  16. }
  17. exports.Environment = Environment;