Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 622 Bytes

puppeteer.commoneventemitter.once.md

File metadata and controls

27 lines (20 loc) · 622 Bytes
sidebar_label
CommonEventEmitter.once

CommonEventEmitter.once() method

Signature:

interface CommonEventEmitter {
  once<Key extends keyof Events>(
    type: Key,
    handler: Handler<Events[Key]>
  ): this;
}

Parameters

Parameter Type Description
type Key
handler Handler<Events[Key]>

Returns:

this