UNPKG

polygon.io

Version:

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

10 lines (9 loc) 248 B
export interface ILocales { locale: string; desc: string; } export interface ILocalesResponse { status?: string; results?: ILocales[]; } export declare const locales: (apiKeys: string, apiBase: string) => Promise<ILocalesResponse>;