| 2 | |
| 3 | // Acquired items |
| 4 | export interface PoolResource<T> { |
| 5 | value: T |
| 6 | release: () => void |
| 7 | } |
| 8 | |
| 9 | // Internal storage format |
| 10 | interface PoolResourceDescriptor<T> { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…