interface internal.TransformOptions extends DuplexOptions Usageimport { type internal } from "node:stream"; type { TransformOptions } = internal; Methods optional construct(this: Transform, callback: (error?: Error | null) => void): void optional read(this: Transform, size: number): void optional write(this: Transformchunk: anyencoding: BufferEncodingcallback: (error?: Error | null) => void): void optional writev(this: Transform, chunks: Array<{ chunk: any; encoding: BufferEncoding; }>, callback: (error?: Error | null) => void): void optional final(this: Transform, callback: (error?: Error | null) => void): void optional destroy(this: Transform, error: Error | null, callback: (error?: Error | null) => void): void optional transform(this: Transformchunk: anyencoding: BufferEncodingcallback: TransformCallback): void optional flush(this: Transform, callback: TransformCallback): void