ix
Version:
The Interactive Extensions for JavaScript
11 lines (10 loc) • 309 B
TypeScript
import { AsyncIterableX } from '../../asynciterable/asynciterablex.js';
/**
* @ignore
*/
export declare function isEmptyProto<T>(this: AsyncIterableX<T>): Promise<boolean>;
declare module '../../asynciterable/asynciterablex' {
interface AsyncIterableX<T> {
isEmpty: typeof isEmptyProto;
}
}