UNPKG

262 BTypeScriptView Raw
1import { IterableX } from '../../iterable/iterablex';
2/**
3 * @ignore
4 */
5export declare function isEmptyProto<T>(this: IterableX<T>): boolean;
6declare module '../../iterable/iterablex' {
7 interface IterableX<T> {
8 isEmpty: typeof isEmptyProto;
9 }
10}