UNPKG

@master-chief/alpaca-ts

Version:

A TypeScript Node.js library for the https://alpaca.markets REST API and WebSocket streams.

14 lines (13 loc) 226 B
/** * Represents the result of a request to cancel and order */ export declare type CanceledOrderResponse = { /** * orderId */ id?: string; /** * http response code */ status?: number; };