| 15 | |
| 16 | |
| 17 | export interface Async extends AsyncReturnsPromise { |
| 18 | cps: AsyncAcceptsCallbackReturnsNothing; |
| 19 | thunk: AsyncReturnsThunk; |
| 20 | result: AsyncReturnsResult; |
| 21 | iterable: AsyncIterableReturnsPromise; |
| 22 | } |
| 23 | |
| 24 | export interface AsyncFunction { |
| 25 | (fn: Function): Function; |
nothing calls this directly
no outgoing calls
no test coverage detected