UNPKG

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

23 lines (22 loc) 472 B
export type SignOnResponse = { SONRS: SignOnStatus; [key: string]: any; }; export type SignOnStatus = { STATUS: Status; DTSERVER: string; LANGUAGE: string; FI?: FinancialInstitution; [key: string]: any; }; export type Status = { CODE: number | string; SEVERITY: 'INFO' | 'WARN' | 'ERROR'; MESSAGE?: string; [key: string]: any; }; export type FinancialInstitution = { ORG: string; FID: string; [key: string]: any; };