| 44 | } |
| 45 | |
| 46 | export interface PendingPromiseState<T = {}> extends PromiseStateBase { |
| 47 | readonly pending: true; |
| 48 | readonly fulfilled: false; |
| 49 | readonly rejected: false; |
| 50 | readonly value: undefined; |
| 51 | readonly reason: undefined; |
| 52 | } |
| 53 | |
| 54 | export interface FulfilledPromiseState<T = {}> extends PromiseStateBase { |
| 55 | readonly pending: false; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…