ix
Version:
The Interactive Extensions for JavaScript
12 lines (11 loc) • 356 B
TypeScript
import { IterableX } from '../../iterable/iterablex.js';
import { FindOptions } from '../../iterable/findoptions.js';
/**
* @ignore
*/
export declare function findIndexProto<T>(this: IterableX<T>, options: FindOptions<T>): number;
declare module '../../iterable/iterablex' {
interface IterableX<T> {
findIndex: typeof findIndexProto;
}
}