UNPKG

@stoqey/finnhub

Version:
14 lines (13 loc) 289 B
import FinnhubAPI from "."; import { Quote } from "../interface"; interface GetQuote { symbol: string; context: FinnhubAPI; } /** * Get quote * https://finnhub.io/docs/api#quote * @param args */ export declare const getQuoteData: (args: GetQuote) => Promise<Quote>; export {};