UNPKG

ofx4js

Version:

A javascript OFX library, ported from OFX4J

13 lines (12 loc) 277 B
import { AccountDetails } from "./AccountDetails"; /** * Marker interface for account information. */ export interface AccountInfo { /** * The account details. * * @return The account details. */ getAccountDetails(): AccountDetails; }