(event: string | symbol, listener: (...args: any[]) => void)
| 1060 | |
| 1061 | // eslint-disable-next-line @typescript-eslint/no-explicit-any |
| 1062 | on(event: string | symbol, listener: (...args: any[]) => void): this { |
| 1063 | return super.on(event, listener); |
| 1064 | } |
| 1065 | |
| 1066 | /** |
| 1067 | * The "changed" event is emitted by methods such as `tag`, `inScope`, `to`, |
no outgoing calls