Skip to main content

emit

method WritableBase.prototype.emit
Jump to headingWritableBase.prototype.emit(event: "close"): boolean

Parameters Jump to heading

Jump to headingevent: "close"

Return Type Jump to heading

boolean
Jump to headingWritableBase.prototype.emit(event: "drain"): boolean

Parameters Jump to heading

Jump to headingevent: "drain"

Return Type Jump to heading

boolean
Jump to headingWritableBase.prototype.emit(
event: "error",
err: Error,
): boolean

Parameters Jump to heading

Jump to headingevent: "error"

Return Type Jump to heading

boolean
Jump to headingWritableBase.prototype.emit(event: "finish"): boolean

Parameters Jump to heading

Jump to headingevent: "finish"

Return Type Jump to heading

boolean
Jump to headingWritableBase.prototype.emit(
event: "pipe",
src: Readable,
): boolean

Parameters Jump to heading

Jump to headingevent: "pipe"
Jump to headingsrc: Readable

Return Type Jump to heading

boolean
Jump to headingWritableBase.prototype.emit(
event: "unpipe",
src: Readable,
): boolean

Parameters Jump to heading

Jump to headingevent: "unpipe"
Jump to headingsrc: Readable

Return Type Jump to heading

boolean
Jump to headingWritableBase.prototype.emit(
event: string | symbol,
...args: any[],
): boolean

Parameters Jump to heading

Jump to headingevent: string | symbol
Jump to heading<span>...args</span>: any[]

Return Type Jump to heading

boolean
Back to top