Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Retryer

interface Retryer <TData = unknown> {
cancel: (cancelOptions?: CancelOptions) => void;
cancelRetry: () => void;
continue: () => Promise<unknown>;
continueRetry: () => void;
promise: Promise<TData>;
}

§Type Parameters

§
TData = unknown
[src]

§Properties

§
cancel: (cancelOptions?: CancelOptions) => void
[src]
§
cancelRetry: () => void
[src]
§
continue: () => Promise<unknown>
[src]
§
continueRetry: () => void
[src]
§
promise: Promise<TData>
[src]