UNPKG

ofx4js

Version:

A javascript OFX library, ported from OFX4J

13 lines (12 loc) 328 B
export declare class StringReader { private _text; private _cursor; private _mark; constructor(text: string); read(cbuf?: Array<string>, offset?: number, length?: number): number | string; readChar(): string; close(): void; mark(): void; reset(): void; remainder(): string; }