src/api/order/enum/order-action.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Order action.
 */
export enum OrderAction {
  BUY = "BUY",
  SELL = "SELL",
  SSHORT = "SSHORT",
  SLONG = "SLONG"
}

export default OrderAction;