f07ad2c661
This PR updates the docs regarding configuring puppeteer. In addition, some changes have been made to the documentation generator to show default values on the documentation site. Also fixes: https://github.com/puppeteer/puppeteer/pull/9144
758 B
758 B
sidebar_label |
---|
EventEmitter.removeAllListeners |
EventEmitter.removeAllListeners() method
Removes all listeners. If given an event argument, it will remove only listeners for that event.
Signature:
class EventEmitter {
removeAllListeners(event?: EventType): EventEmitter;
}
Parameters
Parameter | Type | Description |
---|---|---|
event | EventType | (Optional) the event to remove listeners for. |
Returns:
this
to enable you to chain method calls.