Skip to content

Commit

Permalink
chore(repeatWhen): update api guard types
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremymwells committed Oct 31, 2022
1 parent ec88d10 commit 06e65d9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions api_guard/dist/types/index.d.ts
Expand Up @@ -577,6 +577,11 @@ export declare function refCount<T>(): MonoTypeOperatorFunction<T>;

export declare function repeat<T>(countOrConfig?: number | RepeatConfig): MonoTypeOperatorFunction<T>;

export interface RepeatConfig {
count?: number;
delay?: number | ((count: number) => ObservableInput<any>);
}

export declare function repeatWhen<T>(notifier: (notifications: Observable<void>) => ObservableInput<any>): MonoTypeOperatorFunction<T>;

export declare class ReplaySubject<T> extends Subject<T> {
Expand Down
5 changes: 5 additions & 0 deletions api_guard/dist/types/operators/index.d.ts
Expand Up @@ -231,6 +231,11 @@ export declare function refCount<T>(): MonoTypeOperatorFunction<T>;

export declare function repeat<T>(countOrConfig?: number | RepeatConfig): MonoTypeOperatorFunction<T>;

export interface RepeatConfig {
count?: number;
delay?: number | ((count: number) => ObservableInput<any>);
}

export declare function repeatWhen<T>(notifier: (notifications: Observable<void>) => ObservableInput<any>): MonoTypeOperatorFunction<T>;

export declare function retry<T>(count?: number): MonoTypeOperatorFunction<T>;
Expand Down

0 comments on commit 06e65d9

Please sign in to comment.