Skip to main content

TransformOptions

interface default.TransformOptions
optional
Jump to headingconstruct(
this: Transform,
callback: (error?: Error | null) => void,
): void
optional
Jump to headingread(
this: Transform,
size: number,
): void
optional
Jump to headingwrite(
this: Transform,
chunk: any,
encoding: BufferEncoding,
callback: (error?: Error | null) => void,
): void
optional
Jump to headingwritev(
this: Transform,
chunks: Array<{ chunk: any; encoding: BufferEncoding; }>,
callback: (error?: Error | null) => void,
): void
optional
Jump to headingfinal(
this: Transform,
callback: (error?: Error | null) => void,
): void
optional
Jump to headingdestroy(
this: Transform,
error: Error | null,
callback: (error?: Error | null) => void,
): void
optional
Jump to headingtransform(
this: Transform,
chunk: any,
encoding: BufferEncoding,
): void
optional
Jump to headingflush(
this: Transform,
): void
Back to top