ofx4js
Version:
A javascript OFX library, ported from OFX4J
17 lines (16 loc) • 492 B
TypeScript
import { OFXApplicationContext } from "./OFXApplicationContext";
export declare class OFXApplicationContextHolder {
private static CURRENT_CONTEXT;
/**
* Get the current (thread-safe) context.
*
* @return The thread-safe context.
*/
static getCurrentContext(): OFXApplicationContext;
/**
* Set the current context.
*
* @param context The context.
*/
static setCurrentContext(context: OFXApplicationContext): void;
}