puppeteer/docs/api/puppeteer.commoneventemitter.emit.md

25 lines
441 B
Markdown
Raw Normal View History

2022-07-05 13:41:43 +00:00
---
sidebar_label: CommonEventEmitter.emit
---
# CommonEventEmitter.emit() method
#### Signature:
2022-07-05 13:41:43 +00:00
```typescript
interface CommonEventEmitter {
2023-09-13 13:47:55 +00:00
emit<Key extends keyof Events>(type: Key, event: Events[Key]): boolean;
2022-07-05 13:41:43 +00:00
}
```
## Parameters
2023-09-13 13:47:55 +00:00
| Parameter | Type | Description |
| --------- | ------------- | ----------- |
| type | Key | |
| event | Events\[Key\] | |
2022-07-05 13:41:43 +00:00
**Returns:**
boolean