UNPKG

ix

Version:

The Interactive Extensions for JavaScript

12 lines (11 loc) 345 B
import { IterableX } from '../../iterable/iterablex.js'; import { FindOptions } from '../../iterable/findoptions.js'; /** * @ignore */ export declare function everyProto<T>(this: IterableX<T>, options: FindOptions<T>): boolean; declare module '../../iterable/iterablex' { interface IterableX<T> { every: typeof everyProto; } }