Skip to content

Instantly share code, notes, and snippets.

@alex-okrushko
Last active May 23, 2018 01:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alex-okrushko/adf23b9554714de80a217ee442b32c21 to your computer and use it in GitHub Desktop.
Save alex-okrushko/adf23b9554714de80a217ee442b32c21 to your computer and use it in GitHub Desktop.
IntervalBackoffConfig
export interface IntervalBackoffConfig {
initialInterval: number;
maxInterval?: number;
backoffDelay?: (iteration: number, initialInterval: number) => number;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment