| 275 | * - The return value from registering a provider. When `.dispose()` is called, the provider is unregistered. |
| 276 | */ |
| 277 | export interface IDisposable { |
| 278 | dispose(): void; |
| 279 | } |
| 280 | |
| 281 | /** |
| 282 | * Check if `thing` is {@link IDisposable disposable}. |
nothing calls this directly
no outgoing calls
no test coverage detected