diff --git a/src/types.ts b/src/types.ts index 10a75d8..d4f2e11 100644 --- a/src/types.ts +++ b/src/types.ts @@ -77,6 +77,11 @@ export interface CreateFetchOptions { AbortController?: typeof AbortController; } +export type GlobalOptions = Pick< + FetchOptions, + "timeout" | "retry" | "retryDelay" +>; + // -------------------------- // Response Types // --------------------------