UNPKG

@clickup/rest-client

Version:

A syntax sugar tool around Node fetch() API, tailored to work with TypeScript and response validators

13 lines (11 loc) 295 B
import type RestResponse from "../RestResponse"; import RestResponseError from "./RestResponseError"; export default class RestRetriableError extends RestResponseError { constructor( message: string, public delayMs: number, res: RestResponse, ) { super(message, res); } }