跳至主要内容
版本: 22.5.0

EventEmitter.removeAllListeners() 方法

移除所有监听器。如果给定事件参数,它将只移除该事件的监听器。

签名:

class EventEmitter {
removeAllListeners(type?: keyof EventsWithWildcard<Events>): this;
}

参数

参数类型描述
typekeyof EventsWithWildcard<Events>(可选) 要移除监听器的事件。

返回值

this

this 用于使您能够链接方法调用。