diff --git a/source/types/options.ts b/source/types/options.ts index 1142617a..1254c70c 100644 --- a/source/types/options.ts +++ b/source/types/options.ts @@ -6,7 +6,7 @@ import type {RetryOptions} from './retry.js'; export type SearchParamsInit = string | string[][] | Record | URLSearchParams | undefined; // eslint-disable-next-line unicorn/prevent-abbreviations -export type SearchParamsOption = SearchParamsInit | Record | Array>; +export type SearchParamsOption = SearchParamsInit | Record | Array>; export type HttpMethod = 'get' | 'post' | 'put' | 'patch' | 'head' | 'delete';