(
asyncResultList: T,
)
| 67 | asyncResultList: T, |
| 68 | ): CombineResultAsyncs<T> |
| 69 | static combine<T extends readonly ResultAsync<unknown, unknown>[]>( |
| 70 | asyncResultList: T, |
| 71 | ): CombineResultAsyncs<T> { |
| 72 | return (combineResultAsyncList(asyncResultList) as unknown) as CombineResultAsyncs<T> |
| 73 | } |
| 74 | |
| 75 | static combineWithAllErrors< |
| 76 | T extends readonly [ResultAsync<unknown, unknown>, ...ResultAsync<unknown, unknown>[]] |
no test coverage detected