EventEmitter.removeAllListeners() 方法
移除所有监听器。如果给定一个事件参数,它将仅移除该事件的监听器。
签名
class EventEmitter {
removeAllListeners(type?: keyof EventsWithWildcard<Events>): this;
}
参数
参数 | 类型 | 描述 |
---|---|---|
type | keyof EventsWithWildcard<Events> | (可选) 要移除监听器的事件。 |
返回
this
this
使您能够链式调用方法。