UNPKG

ix

Version:

The Interactive Extensions for JavaScript

11 lines (10 loc) 352 B
import { AsyncIterableX } from '../../asynciterable/asynciterablex'; /** * @ignore */ export declare function countProto<T>(this: AsyncIterableX<T>, selector?: (value: T) => boolean | Promise<boolean>): Promise<number>; declare module '../../asynciterable/asynciterablex' { interface AsyncIterableX<T> { count: typeof countProto; } }