@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
8 lines (7 loc) • 329 B
TypeScript
import { Transform, type TransformCallback, type TransformOptions } from 'node:stream';
export declare class FrameDecoder extends Transform {
data: string | null;
constructor(opts?: TransformOptions);
_transform(chunk: string, encoding: string, callback: TransformCallback): void;
destroy(error?: Error): this;
}