up-bank-typescript
Version:
Typescript wrapper for Up Bank API
15 lines (14 loc) • 446 B
TypeScript
import { Accounts } from './services/accounts';
import { Categories } from './services/categories';
import { Tags } from './services/tags';
import { Transactions } from './services/transactions';
import { Util } from './services/util';
export declare class Up {
private fetch;
accounts: Accounts;
categories: Categories;
tags: Tags;
transactions: Transactions;
util: Util;
constructor(apiKey: string);
}