'use strict'; class Future { /** * Resolve the created Promise. */ resolve; /** * Reject the created Promise. */ reject; /** * The Promise created by the Future. */ promise = new Promise((resolve, reject) => { this.resolve = resolve; this.reject = reject; }); } exports.Future = Future; //# sourceMappingURL=main.cjs.map