(onFulfill: () => mixed, onReject: () => mixed)
| 98 | // This doesn't require a value to be passed to either handler. |
| 99 | export interface Wakeable { |
| 100 | then(onFulfill: () => mixed, onReject: () => mixed): void | Wakeable; |
| 101 | } |
| 102 | |
| 103 | // The subset of a Promise that React APIs rely on. This resolves a value. |
no outgoing calls