File tree 2 files changed +10
-0
lines changed
2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -577,6 +577,11 @@ export declare function refCount<T>(): MonoTypeOperatorFunction<T>;
577
577
578
578
export declare function repeat < T > ( countOrConfig ?: number | RepeatConfig ) : MonoTypeOperatorFunction < T > ;
579
579
580
+ export interface RepeatConfig {
581
+ count ?: number ;
582
+ delay ?: number | ( ( count : number ) => ObservableInput < any > ) ;
583
+ }
584
+
580
585
export declare function repeatWhen < T > ( notifier : ( notifications : Observable < void > ) => ObservableInput < any > ) : MonoTypeOperatorFunction < T > ;
581
586
582
587
export declare class ReplaySubject < T > extends Subject < T > {
Original file line number Diff line number Diff line change @@ -231,6 +231,11 @@ export declare function refCount<T>(): MonoTypeOperatorFunction<T>;
231
231
232
232
export declare function repeat < T > ( countOrConfig ?: number | RepeatConfig ) : MonoTypeOperatorFunction < T > ;
233
233
234
+ export interface RepeatConfig {
235
+ count ?: number ;
236
+ delay ?: number | ( ( count : number ) => ObservableInput < any > ) ;
237
+ }
238
+
234
239
export declare function repeatWhen < T > ( notifier : ( notifications : Observable < void > ) => ObservableInput < any > ) : MonoTypeOperatorFunction < T > ;
235
240
236
241
export declare function retry < T > ( count ?: number ) : MonoTypeOperatorFunction < T > ;
You can’t perform that action at this time.
0 commit comments