UNPKG

ofx4js

Version:

A javascript OFX library, ported from OFX4J

14 lines (13 loc) 292 B
export declare class Error { name: string; message: string; stack: string; constructor(message?: string); } /** * Base exception class. */ export declare class OFXException extends Error { private innerError; constructor(message?: string, e?: Error); }