Sha256: 72e3ec5e610e8f6800a55279fed08a618e29aad0e49848bd819af47836ebe389
Contents?: true
Size: 613 Bytes
Versions: 49
Compression:
Stored size: 613 Bytes
Contents
import { MonoTypeOperatorFunction } from '../interfaces'; /** * Returns an Observable that repeats the stream of items emitted by the source Observable at most count times. * * <img src="./img/repeat.png" width="100%"> * * @param {number} [count] The number of times the source Observable items are repeated, a count of 0 will yield * an empty Observable. * @return {Observable} An Observable that repeats the stream of items emitted by the source Observable at most * count times. * @method repeat * @owner Observable */ export declare function repeat<T>(count?: number): MonoTypeOperatorFunction<T>;
Version data entries
49 entries across 49 versions & 4 rubygems