| 27 | } |
| 28 | |
| 29 | export interface AsyncOptions { |
| 30 | /** Recognised values: 'none', 'promise', 'thunk', 'result' */ |
| 31 | returnValue?: string; |
| 32 | acceptsCallback?: boolean; |
| 33 | isIterable?: boolean; |
| 34 | maxConcurrency?: number; |
| 35 | } |
| 36 | |
| 37 | interface AsyncReturnsPromise extends AsyncFunction { |
| 38 | <TResult>(fn: () => TResult): () => Promise<TResult>; |
nothing calls this directly
no outgoing calls
no test coverage detected