Fix fetch

Fix FetchOptions missing timeout property
This commit is contained in:
bottomtext228 2023-09-29 17:48:36 +03:00
parent ad3d09448c
commit 8b02d4dce1
1 changed files with 1 additions and 0 deletions

View File

@ -12,6 +12,7 @@ const redirectCodes = new Set([301, 302, 307, 308]);
* @property {number} [maxRedirects] - Maximum amount of redirects to be followed.
* @property {AbortSignal} [signal] - Signal to abruptly cancel the request
* @property {Uint8Array | string} [body] - Defines a request body. Data must be serializable.
* @property {number} [timeout] - Request timeout time.
*/
/**