Skip to content

Latest commit

 

History

History
27 lines (16 loc) · 707 Bytes

puppeteer.eventemitter.emit.md

File metadata and controls

27 lines (16 loc) · 707 Bytes

Home > puppeteer > EventEmitter > emit

EventEmitter.emit() method

Emit an event and call any associated listeners.

Signature:

emit(event: EventType, eventData?: any): boolean;

Parameters

Parameter Type Description
event EventType the event you'd like to emit
eventData any any data you'd like to emit with the event

Returns:

boolean

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