UNPKG

@knowmax/http-utils

Version:

HTTP utilities for headers, content types, and common HTTP operations

7 lines (6 loc) 238 B
/** Specialized Error for fetch errors which includes the response status and optional data */ export declare class FetchError extends Error { status: number; data?: unknown; constructor(response: Response, data?: unknown); }