UNPKG

rsxjs

Version:

Resilience Extensions for JS.

7 lines (6 loc) 287 B
/** * @file src/fallback/from-async.ts * @copyright 2018-present Karim Alibhai. All rights reserved. */ import { AsyncFunction, SyncFunction } from '../types'; export declare function fromAsync<T>(fn: AsyncFunction<T>, fallback: AsyncFunction<T> | SyncFunction<T>): AsyncFunction<T>;