@ionic/cli
Version:
A tool for creating and developing Ionic Framework mobile apps.
18 lines (17 loc) • 516 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Environment = void 0;
class Environment {
constructor({ client, config, flags, getInfo, log, ctx, prompt, session, shell }) {
this.client = client;
this.config = config;
this.flags = flags;
this.getInfo = getInfo;
this.log = log;
this.ctx = ctx;
this.prompt = prompt;
this.session = session;
this.shell = shell;
}
}
exports.Environment = Environment;