bittrex-api-client
Version:
A client which can be used to interact with Bittrex's API. Entirely developed in TypeScript.
12 lines • 452 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Represents the type of an order book.
*/
var OrderBookType;
(function (OrderBookType) {
OrderBookType[OrderBookType["BUY"] = 0] = "BUY";
OrderBookType[OrderBookType["SELL"] = 1] = "SELL";
OrderBookType[OrderBookType["BOTH"] = 2] = "BOTH";
})(OrderBookType = exports.OrderBookType || (exports.OrderBookType = {}));
//# sourceMappingURL=OrderBookType.js.map