interface RetryOptionsimport { type RetryOptions } from "https://deno.land/std@0.220.0/async/retry.ts"; Options for retry. Propertiesoptionalmultiplier: number = 2How much to backoff after each retry. optionalmaxTimeout: number = 60000The maximum milliseconds between attempts. optionalmaxAttempts: number = 5The maximum amount of attempts until failure. optionalminTimeout: number = 1000The initial and minimum amount of milliseconds between attempts. optionaljitter: number = 1Amount of jitter to introduce to the time between attempts. This is 1 for full jitter by default.