UNPKG

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