UNPKG

@barfinex/types

Version:

Core TypeScript type definitions and shared interfaces for the Barfinex ecosystem. Provides strongly-typed contracts for modules, services, and plugins.

14 lines 436 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.TradeSide = void 0; /** * Enum representing the type of trade (buy or sell). */ var TradeSide; (function (TradeSide) { /** Long position (buy). */ TradeSide["LONG"] = "LONG"; /** Short position (sell). */ TradeSide["SHORT"] = "SHORT"; })(TradeSide || (exports.TradeSide = TradeSide = {})); //# sourceMappingURL=trade.interface.js.map