UNPKG

@marceloclp/monzojs

Version:

Unofficial wrapper for the Monzo API written in TypeScript.

9 lines (8 loc) 307 B
import { Monzo, MonzoAPI } from '../types'; import { AuthedEndpoint } from '../types/endpoints'; /** * Returns balance information for a specific account. * * @see https://docs.monzo.com/#read-balance */ export declare const getBalance: AuthedEndpoint<MonzoAPI.Balance.GetBalanceParams, Monzo.Balance>;