UNPKG

acx-io

Version:

Typescript wrapper for ACX Exchange

9 lines (8 loc) 199 B
export declare type Side = 'sell' | 'buy'; export declare type OrdType = 'limit' | 'market'; export interface Order { side: Side; volume: string; price?: string; ord_type?: string; }