puppeteer/docs/api/puppeteer.eventemitter.listenercount.md

28 lines
752 B
Markdown
Raw Normal View History

2022-07-05 13:41:43 +00:00
---
sidebar_label: EventEmitter.listenerCount
---
# EventEmitter.listenerCount() method
Gets the number of listeners for a given event.
#### Signature:
2022-07-05 13:41:43 +00:00
```typescript
class EventEmitter {
2023-09-13 13:47:55 +00:00
listenerCount(type: keyof EventsWithWildcard<Events>): number;
2022-07-05 13:41:43 +00:00
}
```
## Parameters
2023-09-13 13:47:55 +00:00
| Parameter | Type | Description |
| --------- | --------------------------------------------------------------------------- | --------------------------------------- |
| type | keyof [EventsWithWildcard](./puppeteer.eventswithwildcard.md)&lt;Events&gt; | the event to get the listener count for |
2022-07-05 13:41:43 +00:00
**Returns:**
number
the number of listeners bound to the given event