| 44 | * which needs to be explicitly disposed. |
| 45 | */ |
| 46 | export interface Disposable { |
| 47 | /** |
| 48 | * Dispose the internal resource |
| 49 | * This function can be called multiple times, |
| 50 | * only the first call will take effect. |
| 51 | */ |
| 52 | dispose: () => void; |
| 53 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…