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
13 lines (12 loc) • 743 B
TypeScript
export { Ofx } from './older-implementation/main';
export { blobToString, bufferToString } from './common/reader';
export { fixJsonProblems } from './common/parse';
export { formatDate } from './common/date';
export type { IExtractor } from './interfaces/extractor.interface';
export type { CustomExtractor } from './interfaces/custom-extractor.interface';
export type { OfxResponse, OfxStructure } from './@types/ofx/index';
export type { BankTransactionList } from './@types/ofx/banking';
export { Reader } from './implementations/reader';
export { OfxExtractor } from './implementations/ofx-extractor';
export { Extractor } from './implementations/extractor';
export type { MetaData, ExtractorConfig, DateResponse } from './@types/common';