ix
Version:
The Interactive Extensions for JavaScript
13 lines (10 loc) • 329 B
text/typescript
import { IterableX } from '../../iterable/iterablex.js';
import { empty as emptyStatic } from '../../iterable/empty.js';
/** @nocollapse */
IterableX.empty = emptyStatic;
declare module '../../iterable/iterablex' {
// eslint-disable-next-line no-shadow
namespace IterableX {
export let empty: typeof emptyStatic;
}
}