UNPKG

@bakesaled/muster

Version:

A tool that collects your financial information from the web.

13 lines (12 loc) 438 B
import { OfxOptions } from './ofx-options'; import { OfxDateRange } from './ofx-date-range'; export declare class OfxRequestService { private options; private debug; constructor(options: OfxOptions); getAccounts(): Promise<string>; getStatement(dateRange: OfxDateRange, debug?: boolean): Promise<string>; private convertBankingOptionsToHeaderString; private sendRequest; private buildSocket; }