UNPKG

@hublaw/ofx-parser

Version:

A tool that converts financial data from OFX to JS Object.

7 lines (6 loc) 349 B
import { TransactionModel } from '../transaction.model'; import { OfxStatementTransaction } from './ofx-body'; export declare class OfxStatementTransactionAdapter { static convertToTransaction(trans: OfxStatementTransaction): TransactionModel; static convertTransactionList(transList: OfxStatementTransaction[]): TransactionModel[]; }