Skip to content

Latest commit

 

History

History
58 lines (36 loc) · 562 Bytes

puppeteer.commoneventemitter.once.md

File metadata and controls

58 lines (36 loc) · 562 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