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