mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
d963fcdd80
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
737 B
737 B
sidebar_label |
---|
EventEmitter.emit |
EventEmitter.emit() method
Emit an event and call any associated listeners.
Signature:
class EventEmitter {
emit<Key extends keyof EventsWithWildcard<Events>>(
type: Key,
event: EventsWithWildcard<Events>[Key]
): boolean;
}
Parameters
Parameter |
Type |
Description |
---|---|---|
type |
Key |
the event you'd like to emit |
event |
EventsWithWildcard<Events>[Key] |
boolean
true
if there are any listeners, false
if there are not.