(iterable: Iterable<PromiseState<any>>)
| 20 | reject<T = {}>(reason?: any, meta?: any): RejectedPromiseState<T>; |
| 21 | all<T = {}>(iterable: Iterable<PromiseState<any>>): PromiseState<T[]>; |
| 22 | race<T = {}>(iterable: Iterable<PromiseState<any>>): PromiseState<T>; |
| 23 | } |
| 24 | |
| 25 | interface PromiseStateBase<T = {}> { |
no outgoing calls
no test coverage detected