Interface EventEmitterLike
interface EventEmitterLike { off: ((...args) => any); on: ((...args) => any); once: ((...args) => any); } Properties
off
off: ((...args) => any)
Type declaration
- (...args): any
Returns any
on
on: ((...args) => any)
Type declaration
- (...args): any
Returns any
once
once: ((...args) => any)
Type declaration
- (...args): any
Returns any