UNPKG

@reactivex/ix-esnext-esm

Version:

The Interactive Extensions for JavaScript

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