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

x/jamf_school/deps/ky.ts>RetryOptions

A simple, secure, correct, and modern Jamf School API wrapper. (Unofficial)
Latest
interface RetryOptions
Re-export
import { type RetryOptions } from "https://deno.land/x/jamf_school@0.5.0/deps/ky.ts";

Properties

optional
limit: number

The number of times to retry failed requests.

optional
methods: string[]

The HTTP methods allowed to retry.

optional
statusCodes: number[]

The HTTP status codes allowed to retry.

optional
afterStatusCodes: number[]

The HTTP status codes allowed to retry with a Retry-After header.

optional
maxRetryAfter: number

If the Retry-After header is greater than maxRetryAfter, the request will be canceled.