| 1 | export class Deferred<T> { |
| 2 | private resolveFn: (value: T | PromiseLike<T>) => void = () => {} |
| 3 | private rejectFn: (reason?: any) => void = () => {} |
| 4 | private _promise: Promise<T> |
nothing calls this directly
no outgoing calls
no test coverage detected