puppeteer/docs/api/puppeteer.eventemitter.emit.md

32 lines
903 B
Markdown
Raw Normal View History

2022-07-05 13:41:43 +00:00
---
sidebar_label: EventEmitter.emit
---
# EventEmitter.emit() method
Emit an event and call any associated listeners.
#### Signature:
2022-07-05 13:41:43 +00:00
```typescript
class EventEmitter {
2023-09-13 13:47:55 +00:00
emit<Key extends keyof EventsWithWildcard<Events>>(
type: Key,
event: EventsWithWildcard<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 | the event you'd like to emit |
| event | [EventsWithWildcard](./puppeteer.eventswithwildcard.md)&lt;Events&gt;\[Key\] | |
2022-07-05 13:41:43 +00:00
**Returns:**
boolean
`true` if there are any listeners, `false` if there are not.