( method: T, params?: MethodParams<T>, options?: ExecOptions )
| 26 | > = R extends TransferResult<infer U> ? U : R |
| 27 | |
| 28 | export async function queueTask<T extends Method>( |
| 29 | method: T, |
| 30 | params?: MethodParams<T>, |
| 31 | options?: ExecOptions |
| 32 | ): Promise<MethodReturnType<T>> { |
| 33 | // eslint-disable-next-line @typescript-eslint/return-await |
| 34 | return await createPool().exec(method, params, options) |
| 35 | } |
no test coverage detected