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
16 lines (15 loc) • 455 B
TypeScript
import { MetaData } from '../common';
import { BankResponse } from './banking';
import { CreditCardResponse } from './credit-card';
import { SignOnResponse } from './signon';
export type OFX = {
SIGNONMSGSRSV1: SignOnResponse;
BANKMSGSRSV1: BankResponse;
CREDITCARDMSGSRSV1: CreditCardResponse;
[key: string]: any;
};
export type OfxStructure = {
OFX: OFX;
[key: string]: any;
};
export type OfxResponse = MetaData & OfxStructure;