mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
28 lines
624 B
Markdown
28 lines
624 B
Markdown
---
|
|
sidebar_label: CommonEventEmitter.off
|
|
---
|
|
|
|
# CommonEventEmitter.off() method
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
interface CommonEventEmitter {
|
|
off<Key extends keyof Events>(
|
|
type: Key,
|
|
handler?: Handler<Events[Key]>
|
|
): this;
|
|
}
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| --------- | ------------------------------------------------------ | ------------ |
|
|
| type | Key | |
|
|
| handler | [Handler](./puppeteer.handler.md)<Events\[Key\]> | _(Optional)_ |
|
|
|
|
**Returns:**
|
|
|
|
this
|