@reactivex/ix-es5-esm
Version:
The Interactive Extensions for JavaScript
9 lines (8 loc) • 309 B
TypeScript
import { IterableX } from './iterablex.js';
/**
* Returns an empty iterable sequence.
*
* @template TSource The type used for the iterable type parameter of the resulting sequence.
* @returns {IterableX<never>} An iterable sequence with no elements.
*/
export declare function empty(): IterableX<never>;