UNPKG

@vansite/ts-sharetribe-flex-sdk

Version:

This is a TypeScript SDK for Sharetribe Flex API. It reduces the complexity of the API and provides a more user-friendly interface.

11 lines (10 loc) 318 B
import { InternalAxiosRequestConfig } from "axios"; /** * Extended type for Axios internal request configuration to include a retry flag. */ export type ExtendedInternalAxiosRequestConfig = InternalAxiosRequestConfig & { /** * Indicates whether the request has been retried. */ _retry: boolean; };