UNPKG

@reactivex/ix-esnext-esm

Version:

The Interactive Extensions for JavaScript

11 lines (10 loc) 289 B
import { IterableX } from '../../iterable/iterablex'; /** * @ignore */ export declare function elementAtProto<T>(this: IterableX<T>, index: number): T | undefined; declare module '../../iterable/iterablex' { interface IterableX<T> { elementAt: typeof elementAtProto; } }