interface CommonEventEmitter { once<Key extends keyof Events>( type: Key, handler: Handler<Events[Key]>, ): this; }
Returns:
this