| 5 | import { once } from './objUtils'; |
| 6 | |
| 7 | export interface IDisposable { |
| 8 | dispose(): void; |
| 9 | } |
| 10 | |
| 11 | export interface IEvent<T> { |
| 12 | // eslint-disable-next-line @typescript-eslint/no-explicit-any |
nothing calls this directly
no outgoing calls
no test coverage detected