UNPKG

ix

Version:

The Interactive Extensions for JavaScript

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