@stoqey/ib
Version:
Interactive Brokers TWS/IB Gateway API client library for Node.js (TS)
15 lines • 405 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.OptionType = void 0;
/**
* Option types.
*/
var OptionType;
(function (OptionType) {
/** Put option. */
OptionType["Put"] = "P";
/** Call option. */
OptionType["Call"] = "C";
})(OptionType || (exports.OptionType = OptionType = {}));
exports.default = OptionType;
//# sourceMappingURL=option-type.js.map