UNPKG

@hydro-protocol/hydro-client-js

Version:
14 lines (13 loc) 360 B
"use strict"; 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;