UNPKG

302 BTypeScriptView Raw
1import { IterableX } from '../../iterable/iterablex';
2/**
3 * @ignore
4 */
5export declare function includesProto<T>(this: IterableX<T>, searchElement: T, fromIndex: number): boolean;
6declare module '../../iterable/iterablex' {
7 interface IterableX<T> {
8 includes: typeof includesProto;
9 }
10}