puppeteer/docs/api/puppeteer.eventemitter.off.md

67 lines
825 B
Markdown
Raw Permalink Normal View History

2022-07-05 13:41:43 +00:00
---
sidebar_label: EventEmitter.off
---
# EventEmitter.off() method
Remove an event listener from firing.
#### Signature:
2022-07-05 13:41:43 +00:00
```typescript
class EventEmitter {
2023-09-13 13:47:55 +00:00
off<Key extends keyof EventsWithWildcard<Events>>(
type: Key,
handler?: Handler<EventsWithWildcard<Events>[Key]>
): this;
2022-07-05 13:41:43 +00:00
}
```
## Parameters
<table><thead><tr><th>
2022-07-05 13:41:43 +00:00
Parameter
</th><th>
Type
</th><th>
Description
</th></tr></thead>
<tbody><tr><td>
type
</td><td>
Key
</td><td>
the event type you'd like to stop listening to.
</td></tr>
<tr><td>
handler
</td><td>
[Handler](./puppeteer.handler.md)&lt;[EventsWithWildcard](./puppeteer.eventswithwildcard.md)&lt;Events&gt;\[Key\]&gt;
</td><td>
_(Optional)_ the function that should be removed.
</td></tr>
</tbody></table>
2022-07-05 13:41:43 +00:00
**Returns:**
this
2022-07-05 13:41:43 +00:00
`this` to enable you to chain method calls.