UNPKG

@cranberry-money/shared-services

Version:

Platform-agnostic API services with pure functions and dependency injection. Includes auth, portfolios, instruments, countries, sectors, and more.

6 lines 559 B
import { AxiosInstance } from 'axios'; import type { StockExchange, StockExchangeQueryParams, PaginatedResponse } from '@cranberry-money/shared-types'; export declare const configureStockExchanges: (apiClient: AxiosInstance) => void; export declare const getStockExchanges: (params?: StockExchangeQueryParams) => Promise<import("axios").AxiosResponse<PaginatedResponse<StockExchange>, any>>; export declare const getStockExchangeByUuid: (uuid: string) => Promise<import("axios").AxiosResponse<StockExchange, any>>; //# sourceMappingURL=stockExchanges.d.ts.map