UNPKG

polygon.io

Version:

Isomorphic Javascript client for Polygon.io Stocks, Forex, and Crypto APIs

19 lines (18 loc) 517 B
export interface ICryptoTick { price: number; size: number; exchange: number; conditions: number[]; timestamp: number; } export interface ILastCryptoAverage { avg?: number; tradesAveraged?: number; } export interface ILastTradeForACryptoPair { status: string; symbol: string; last: ICryptoTick; lastAverage: ILastCryptoAverage; } export declare const lastTradeForCryptoPair: (apiKey: string, apiBase: string, from: string, to: string) => Promise<ILastTradeForACryptoPair>;