UNPKG

@reactivex/ix-esnext-esm

Version:

The Interactive Extensions for JavaScript

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