Constructor
new CustomEvents()
- Source
Example
class MyClass {
constructor() {
this.events = new CustomEvents( this );
}
start() {
this.dispatchCustomEvent( "start", { detail: { ... } } );
}
}
const myInstance = new MyClass();
myInstance.addEventListener( "start", e => { ... } );