puppeteer/docs/api/puppeteer.eventemitter.emit.md
dependabot[bot] 93e9acc410
chore(deps-dev): Bump the dev-dependencies group with 3 updates (#12101)
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>
2024-03-20 15:03:14 +00:00

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]

**Returns:**

boolean

true if there are any listeners, false if there are not.