( onFulfill: (value: T) => Result, onReject: (error: Err) => Result )
| 37 | |
| 38 | interface ThenableImpl<T, Result, Err> { |
| 39 | then( |
| 40 | onFulfill: (value: T) => Result, |
| 41 | onReject: (error: Err) => Result |
| 42 | ): void | Wakeable<Result>; |
nothing calls this directly
no outgoing calls
no test coverage detected