/** * @short * Creates an *empty* iterable. * * @categories * static generator * * @description * Creates an iterable which completes without yielding any value. * * @returns * Iterable * * @example * j.Empty() * // => [] */ export declare function Empty(): IterableIterator;