mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
624 B
624 B
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