UNPKG

ofx4js

Version:

A javascript OFX library, ported from OFX4J

14 lines (13 loc) 333 B
/** * Web Enrollment option containing URL to direct user for web based enrollment, if supported. * @see "Section 8.8 OFX Spec" */ export declare class WebEnrollment { private url; /** * URL to start enrollment process * @return String */ getUrl(): string; setUrl(url: string): void; }