UNPKG

317 BTypeScriptView Raw
1import { IterableX } from './iterablex';
2/**
3 * Returns an empty iterable sequence.
4 *
5 * @export
6 * @template TSource The type used for the iterable type parameter of the resulting sequence.
7 * @returns {IterableX<never>} An iterable sequence with no elements.
8 */
9export declare function empty(): IterableX<never>;