Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

repeat.d.ts 582B

1234567891011121314
  1. import { MonoTypeOperatorFunction } from '../types';
  2. /**
  3. * Returns an Observable that repeats the stream of items emitted by the source Observable at most count times.
  4. *
  5. * ![](repeat.png)
  6. *
  7. * @param {number} [count] The number of times the source Observable items are repeated, a count of 0 will yield
  8. * an empty Observable.
  9. * @return {Observable} An Observable that repeats the stream of items emitted by the source Observable at most
  10. * count times.
  11. * @method repeat
  12. * @owner Observable
  13. */
  14. export declare function repeat<T>(count?: number): MonoTypeOperatorFunction<T>;