ky
Version:
Tiny and elegant HTTP client based on the Fetch API
7 lines (6 loc) • 353 B
TypeScript
import type { RetryOptions } from '../types/retry.js';
import type { InternalOptions } from '../types/options.js';
export declare const normalizeRequestMethod: (input: string) => string;
type InternalRetryOptions = InternalOptions['retry'];
export declare const normalizeRetryOptions: (retry?: number | RetryOptions) => InternalRetryOptions;
export {};