mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
93e9acc410
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Nikolay Vitkov <nvitkov@chromium.org>
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.