UNPKG

inflow-export

Version:

Export my spendings as CSV across all Nigerian Bank accounts, using inflow.finance

3 lines (2 loc) 358 B
import { InflowTransaction } from "./models"; export declare const exportInflowTransactions: (getAccessToken: () => Promise<string>, getInflowTransactions: (accessToken: string) => Promise<InflowTransaction[]>, transformInflowTransactions: (transactions: InflowTransaction[]) => Promise<string>, saveData: (data: string) => Promise<any>) => Promise<string>;