emberplus-connection
Version:
Javascript implementation of the Ember+ automation protocol
12 lines • 373 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InvocationResultImpl = void 0;
class InvocationResultImpl {
constructor(id, success, result) {
this.id = id;
this.success = success;
this.result = result;
}
}
exports.InvocationResultImpl = InvocationResultImpl;
//# sourceMappingURL=InvocationResult.js.map