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 586 B
import { AxiosInstance } from 'axios'; import type { BlueberryBankAccount as BankAccount, BlueberryBankAccountQueryParams as BankAccountQueryParams, PaginatedResponse } from '@cranberry-money/shared-types'; export declare const configureBanks: (apiClient: AxiosInstance) => void; export declare const getBankAccounts: (params?: BankAccountQueryParams) => Promise<import("axios").AxiosResponse<PaginatedResponse<BankAccount>, any>>; export declare const getBankAccountByUuid: (uuid: string) => Promise<import("axios").AxiosResponse<BankAccount, any>>; //# sourceMappingURL=banks.d.ts.map