You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Timeout to be used when executing the request. In milliseconds.
107
+
*
108
+
* Same as {@link https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal#aborting_a_fetch_with_timeout_or_explicit_abort | AbortSignal.timeout()}.
109
+
*
110
+
* This field is exclusive with `signal`, and using both of them will result in a runtime failure.
111
+
*/
112
+
timeout?: number;
113
+
114
+
/**
115
+
* Signal to abort the underlying `fetch` operation. See {@link https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal}.
116
+
*
117
+
* This field is exclusive with `timeout`, and using both of them will result in a runtime failure.
0 commit comments