ofx-data-extractor
Version:
A module written in TypeScript that provides a utility to extract data from an OFX file in Node.js and Browser
12 lines (11 loc) • 527 B
TypeScript
import { OfxStructure } from '../@types/ofx/index';
import { CustomExtractor } from '../interfaces/custom-extractor.interface';
import { Config } from '../common/config';
import { TransactionsSummary } from '../@types/common';
export declare class OfxExtractor extends CustomExtractor {
setConfig(config: Config): void;
getBankTransferList(data: string): any;
getCreditCardTransferList(data: string): any;
getTransactionsSummary(data: string): TransactionsSummary;
getContent(data: string): OfxStructure;
}