UNPKG

bitso-ts

Version:

Simple TypeScript Bitso API Wrapper for Public and Private end points. [![MIT License](https://img.shields.io/apm/l/atomic-design-ui.svg?)](https://github.com/amircp/bitso-ts/blob/master/LICENSE) ## Installation

12 lines (10 loc) 184 B
export interface IBookPrice { book: string; price: string; amount: string; oid?: string; } export default interface IOrderBook { asks: [IBookPrice]; bids: [IBookPrice]; }