Skip to content

Latest commit

 

History

History
60 lines (37 loc) · 574 Bytes

puppeteer.commoneventemitter.off.md

File metadata and controls

60 lines (37 loc) · 574 Bytes
sidebar_label
CommonEventEmitter.off

CommonEventEmitter.off() method

Signature:

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

Parameters

Parameter

Type

Description

type

Key

handler

Handler<Events[Key]>

(Optional)

**Returns:**

this