@hydro-protocol/hydro-client-js
Version:
Javascript SDK for the Hydro API
14 lines (13 loc) • 360 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Description of a websocket channel you are listening for updates on.
*/
var Channel = /** @class */ (function () {
function Channel(json) {
this.name = json.name;
this.marketIds = json.marketIds;
}
return Channel;
}());
exports.Channel = Channel;