UNPKG

free-fx

Version:

9 lines (8 loc) 353 B
/// <reference types="node" /> import { Transform, TransformCallback, TransformOptions } from '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; }