UNPKG

516 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.Environment = void 0;
4class 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}
17exports.Environment = Environment;