UNPKG

@reactivex/ix-esnext-esm

Version:

The Interactive Extensions for JavaScript

11 lines (10 loc) 321 B
import { FindOptions } from '../../asynciterable/findoptions'; /** * @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; } }