@reactivex/ix-esnext-esm
Version:
The Interactive Extensions for JavaScript
11 lines (10 loc) • 344 B
TypeScript
import { OptionalFindOptions } from '../../asynciterable/findoptions';
/**
* @ignore
*/
export declare function singleProto<T>(this: AsyncIterable<T>, options?: OptionalFindOptions<T>): Promise<T | undefined>;
declare module '../../asynciterable/asynciterablex' {
interface AsyncIterableX<T> {
single: typeof singleProto;
}
}