ofx4js
Version:
A javascript OFX library, ported from OFX4J
20 lines (19 loc) • 502 B
TypeScript
import { Status } from "./Status";
/**
* A status holder (usually applied to a response).
*/
export interface StatusHolder {
/**
* The name of this status holder (for error reporting).
*
* @return The name of this status holder (for error reporting).
*/
getStatusHolderName(): string;
/**
* Get the status.
*
* @return The status.
*/
getStatus(): Status;
}
export declare function instanceof_StatusHolder(obj: any): boolean;