type alias WriteStreamEvents
The Keys are events of the WriteStream and the values are the functions that are called when the event is emitted.
Definition #
{ close: () => void; drain: () => void; error: (err: Error) => void; finish: () => void; open: (fd: number) => void; pipe: (src: stream.Readable) => void; ready: () => void; unpipe: (src: stream.Readable) => void; } & CustomEvents