ix
Version:
The Interactive Extensions for JavaScript
10 lines (9 loc) • 548 B
TypeScript
import { AsyncIterableX } from './asynciterablex.js';
/**
* Converts the callback function into wrapped function which returns an async-iterable.
*
* @template TSource The type of the value returned from the callback.
* @param {Function} func The callback function to wrap as an async-iterable.
* @returns {(...args: any[]) => AsyncIterableX<TSource>} A function when invoked, returns an async-iterable from the callback.
*/
export declare function asyncify<TSource>(func: (...xs: any[]) => any): (...args: any[]) => AsyncIterableX<TSource>;