UNPKG

ix

Version:

The Interactive Extensions for JavaScript

12 lines (11 loc) 371 B
import { IterableX } from '../../iterable/iterablex.js'; import { OptionalFindOptions } from '../../iterable/findoptions.js'; /** * @ignore */ export declare function singleProto<T>(this: IterableX<T>, options?: OptionalFindOptions<T>): T | undefined; declare module '../../iterable/iterablex' { interface IterableX<T> { single: typeof singleProto; } }