···11+---
22+'fetch-nodeshim': patch
33+---
44+55+Add configurable `connectTimeout` to override connection timeout. The default will now also be 30s if the request contains `text/html` in the `Accept` header
···5656// Here, we have to account for global differences and split the overloads apart
57575858interface _RequestInit extends Or<RequestInit, globalThis.RequestInit> {
5959+ connectTimeout?: number;
5960 duplex?: 'half';
6061}
6162interface _ResponseInit extends Or<ResponseInit, globalThis.ResponseInit> {}