Skip to content

Commit

Permalink
chore: update api_guardian files
Browse files Browse the repository at this point in the history
  • Loading branch information
benlesh committed Dec 27, 2021
1 parent 6b7a534 commit 5c0910e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api_guard/dist/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ export declare function tap<T>(next?: ((value: T) => void) | null, error?: ((err

export declare type TeardownLogic = Subscription | Unsubscribable | (() => void) | void;

export declare function throttle<T>(durationSelector: (value: T) => ObservableInput<any>, { leading, trailing }?: ThrottleConfig): MonoTypeOperatorFunction<T>;
export declare function throttle<T>(durationSelector: (value: T) => ObservableInput<any>, config?: ThrottleConfig): MonoTypeOperatorFunction<T>;

export declare function throttleTime<T>(duration: number, scheduler?: SchedulerLike, config?: import("./throttle").ThrottleConfig): MonoTypeOperatorFunction<T>;

Expand Down
3 changes: 2 additions & 1 deletion api_guard/dist/types/operators/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,8 @@ export declare function retry<T>(count?: number): MonoTypeOperatorFunction<T>;
export declare function retry<T>(config: RetryConfig): MonoTypeOperatorFunction<T>;

export interface RetryConfig {
count: number;
count?: number;
delay?: number | ((error: any, retryCount: number) => ObservableInput<any>);
resetOnSuccess?: boolean;
}

Expand Down

0 comments on commit 5c0910e

Please sign in to comment.