UNPKG

rsxjs

Version:

Resilience Extensions for JS.

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