Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/deno/tools/release/deps.ts>dax.RetryOptions

A modern runtime for JavaScript and TypeScript.
Go to Latest
interface dax.RetryOptions
import { type dax } from "https://deno.land/x/deno@v1.39.3/tools/release/deps.ts";
const { RetryOptions } = dax;

Options for using $.retry({ ... })

Properties

count: number

Number of times to retry.

delay: Delay | DelayIterator

Delay in milliseconds.

action: () => Promise<TReturn>

Action to retry if it throws.

optional
quiet: boolean

Do not log.