UNPKG

ix

Version:

The Interactive Extensions for JavaScript

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