UNPKG

289 BTypeScriptView Raw
1import { IterableX } from '../../iterable/iterablex';
2/**
3 * @ignore
4 */
5export declare function elementAtProto<T>(this: IterableX<T>, index: number): T | undefined;
6declare module '../../iterable/iterablex' {
7 interface IterableX<T> {
8 elementAt: typeof elementAtProto;
9 }
10}