UNPKG

ix

Version:

The Interactive Extensions for JavaScript

11 lines (10 loc) 321 B
import { FindOptions } from '../../asynciterable/findoptions.js'; /** * @ignore */ export declare function everyProto<T>(this: AsyncIterable<T>, options: FindOptions<T>): Promise<boolean>; declare module '../../asynciterable/asynciterablex' { interface AsyncIterableX<T> { every: typeof everyProto; } }