UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

8 lines (7 loc) 334 B
import { Transform, type TransformCallback, type TransformOptions } from 'node:stream'; export declare class FrameDecoder extends Transform { data: string | undefined; constructor(opts?: TransformOptions); _transform(chunk: string, encoding: string, callback: TransformCallback): void; destroy(error?: Error): this; }