EventEmitter.removeAllListeners() 方法
¥EventEmitter.removeAllListeners() method
删除所有监听器。如果给定事件参数,它将仅删除该事件的监听器。
¥Removes all listeners. If given an event argument, it will remove only listeners for that event.
签名
¥Signature
class EventEmitter {
removeAllListeners(type?: keyof EventsWithWildcard<Events>): this;
}
参数
¥Parameters
范围 | 类型 | 描述 |
---|---|---|
type | EventsWithWildcard 键<事件> | (可选)要删除监听器的事件。 |
Returns:
this
this
使你能够链接方法调用。
¥this
to enable you to chain method calls.