UNPKG

@reactivex/ix-esnext-esm

Version:

The Interactive Extensions for JavaScript

10 lines (9 loc) 487 B
import { AsyncIterableX } from '../asynciterablex'; import { MonoTypeOperatorAsyncFunction } from '../../interfaces'; export declare class StartWithAsyncIterable<TSource> extends AsyncIterableX<TSource> { private _source; private _args; constructor(source: AsyncIterable<TSource>, args: TSource[]); [Symbol.asyncIterator](): AsyncGenerator<TSource, void, unknown>; } export declare function startWith<TSource>(...args: TSource[]): MonoTypeOperatorAsyncFunction<TSource>;