| 59 | } |
| 60 | |
| 61 | export interface RejectedThenable<T, Result, Err> |
| 62 | extends ThenableImpl<T, Result, Err> { |
| 63 | status: 'rejected'; |
| 64 | reason: Err; |
| 65 | } |
| 66 | |
| 67 | export type Thenable<T, Result = void, Err = any> = |
| 68 | | UntrackedThenable<T, Result, Err> |
nothing calls this directly
no outgoing calls
no test coverage detected