@types/jquery 3.5.2 → 3.5.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
jquery/misc.d.ts CHANGED
@@ -50,7 +50,7 @@ declare namespace JQuery {
50
50
  /**
51
51
  * A string containing the URL to which the request is sent.
52
52
  */
53
- url?: string;
53
+ url?: string | undefined;
54
54
  }
55
55
 
56
56
  interface UrlAjaxSettings<TContext = any> extends Ajax.AjaxSettingsBase<TContext> {
@@ -78,11 +78,11 @@ declare namespace JQuery {
78
78
  /**
79
79
  * A set of key/value pairs that map a given dataType to its MIME type, which gets sent in the Accept request header. This header tells the server what kind of response it will accept in return.
80
80
  */
81
- accepts?: PlainObject<string>;
81
+ accepts?: PlainObject<string> | undefined;
82
82
  /**
83
83
  * By default, all requests are sent asynchronously (i.e. this is set to true by default). If you need synchronous requests, set this option to false. Cross-domain requests and dataType: "jsonp" requests do not support synchronous operation. Note that synchronous requests may temporarily lock the browser, disabling any actions while the request is active. As of jQuery 1.8, the use of async: false with jqXHR ($.Deferred) is deprecated; you must use the success/error/complete callback options instead of the corresponding methods of the jqXHR object such as jqXHR.done().
84
84
  */
85
- async?: boolean;
85
+ async?: boolean | undefined;
86
86
  /**
87
87
  * A pre-request callback function that can be used to modify the jqXHR (in jQuery 1.4.x, XMLHTTPRequest) object before it is sent. Use this to set custom headers, etc. The jqXHR and settings objects are passed as arguments. This is an Ajax Event. Returning false in the beforeSend function will cancel the request. As of jQuery 1.5, the beforeSend option will be called regardless of the type of request.
88
88
  */
@@ -90,35 +90,35 @@ declare namespace JQuery {
90
90
  /**
91
91
  * If set to false, it will force requested pages not to be cached by the browser. Note: Setting cache to false will only work correctly with HEAD and GET requests. It works by appending "_={timestamp}" to the GET parameters. The parameter is not needed for other types of requests, except in IE8 when a POST is made to a URL that has already been requested by a GET.
92
92
  */
93
- cache?: boolean;
93
+ cache?: boolean | undefined;
94
94
  /**
95
95
  * A function to be called when the request finishes (after success and error callbacks are executed). The function gets passed two arguments: The jqXHR (in jQuery 1.4.x, XMLHTTPRequest) object and a string categorizing the status of the request ("success", "notmodified", "nocontent", "error", "timeout", "abort", or "parsererror"). As of jQuery 1.5, the complete setting can accept an array of functions. Each function will be called in turn. This is an Ajax Event.
96
96
  */
97
- complete?: TypeOrArray<CompleteCallback<TContext>>;
97
+ complete?: TypeOrArray<CompleteCallback<TContext>> | undefined;
98
98
  /**
99
99
  * An object of string/regular-expression pairs that determine how jQuery will parse the response, given its content type.
100
100
  */
101
- contents?: PlainObject<RegExp>;
101
+ contents?: PlainObject<RegExp> | undefined;
102
102
  /**
103
103
  * When sending data to the server, use this content type. Default is "application/x-www-form-urlencoded; charset=UTF-8", which is fine for most cases. If you explicitly pass in a content-type to $.ajax(), then it is always sent to the server (even if no data is sent). As of jQuery 1.6 you can pass false to tell jQuery to not set any content type header. Note: The W3C XMLHttpRequest specification dictates that the charset is always UTF-8; specifying another charset will not force the browser to change the encoding. Note: For cross-domain requests, setting the content type to anything other than application/x-www-form-urlencoded, multipart/form-data, or text/plain will trigger the browser to send a preflight OPTIONS request to the server.
104
104
  */
105
- contentType?: string | false;
105
+ contentType?: string | false | undefined;
106
106
  /**
107
107
  * This object will be the context of all Ajax-related callbacks. By default, the context is an object that represents the Ajax settings used in the call ($.ajaxSettings merged with the settings passed to $.ajax).
108
108
  */
109
- context?: TContext;
109
+ context?: TContext | undefined;
110
110
  /**
111
111
  * An object containing dataType-to-dataType converters. Each converter's value is a function that returns the transformed value of the response.
112
112
  */
113
- converters?: PlainObject<((value: any) => any) | true>;
113
+ converters?: PlainObject<((value: any) => any) | true> | undefined;
114
114
  /**
115
115
  * If you wish to force a crossDomain request (such as JSONP) on the same domain, set the value of crossDomain to true. This allows, for example, server-side redirection to another domain.
116
116
  */
117
- crossDomain?: boolean;
117
+ crossDomain?: boolean | undefined;
118
118
  /**
119
119
  * Data to be sent to the server. It is converted to a query string, if not already a string. It's appended to the url for GET-requests. See processData option to prevent this automatic processing. Object must be Key/Value pairs. If value is an Array, jQuery serializes multiple values with same key based on the value of the traditional setting (described below).
120
120
  */
121
- data?: PlainObject | string;
121
+ data?: PlainObject | string | undefined;
122
122
  /**
123
123
  * A function to be used to handle the raw response data of XMLHttpRequest. This is a pre-filtering function to sanitize the response. You should return the sanitized data. The function accepts two arguments: The raw data returned from the server and the 'dataType' parameter.
124
124
  */
@@ -140,7 +140,7 @@ declare namespace JQuery {
140
140
  *
141
141
  * multiple, space-separated values: As of jQuery 1.5, jQuery can convert a dataType from what it received in the Content-Type header to what you require. For example, if you want a text response to be treated as XML, use "text xml" for the dataType. You can also make a JSONP request, have it received as text, and interpreted by jQuery as XML: "jsonp text xml". Similarly, a shorthand string such as "jsonp xml" will first attempt to convert from jsonp to xml, and, failing that, convert from jsonp to text, and then from text to xml.
142
142
  */
143
- dataType?: 'xml' | 'html' | 'script' | 'json' | 'jsonp' | 'text' | string;
143
+ dataType?: 'xml' | 'html' | 'script' | 'json' | 'jsonp' | 'text' | string | undefined;
144
144
  /**
145
145
  * The MIME type of content that is used to submit the form to the server. Possible values are:
146
146
  *
@@ -150,81 +150,81 @@ declare namespace JQuery {
150
150
  *
151
151
  * "text/plain": A type introduced in HTML5.
152
152
  */
153
- enctype?: 'application/x-www-form-urlencoded' | 'multipart/form-data' | 'text/plain';
153
+ enctype?: 'application/x-www-form-urlencoded' | 'multipart/form-data' | 'text/plain' | undefined;
154
154
  /**
155
155
  * A function to be called if the request fails. The function receives three arguments: The jqXHR (in jQuery 1.4.x, XMLHttpRequest) object, a string describing the type of error that occurred and an optional exception object, if one occurred. Possible values for the second argument (besides null) are "timeout", "error", "abort", and "parsererror". When an HTTP error occurs, errorThrown receives the textual portion of the HTTP status, such as "Not Found" or "Internal Server Error." As of jQuery 1.5, the error setting can accept an array of functions. Each function will be called in turn. Note: This handler is not called for cross-domain script and cross-domain JSONP requests. This is an Ajax Event.
156
156
  */
157
- error?: TypeOrArray<ErrorCallback<TContext>>;
157
+ error?: TypeOrArray<ErrorCallback<TContext>> | undefined;
158
158
  /**
159
159
  * Whether to trigger global Ajax event handlers for this request. The default is true. Set to false to prevent the global handlers like ajaxStart or ajaxStop from being triggered. This can be used to control various Ajax Events.
160
160
  */
161
- global?: boolean;
161
+ global?: boolean | undefined;
162
162
  /**
163
163
  * An object of additional header key/value pairs to send along with requests using the XMLHttpRequest transport. The header X-Requested-With: XMLHttpRequest is always added, but its default XMLHttpRequest value can be changed here. Values in the headers setting can also be overwritten from within the beforeSend function.
164
164
  */
165
- headers?: PlainObject<string | null | undefined>;
165
+ headers?: PlainObject<string | null | undefined> | undefined;
166
166
  /**
167
167
  * Allow the request to be successful only if the response has changed since the last request. This is done by checking the Last-Modified header. Default value is false, ignoring the header. In jQuery 1.4 this technique also checks the 'etag' specified by the server to catch unmodified data.
168
168
  */
169
- ifModified?: boolean;
169
+ ifModified?: boolean | undefined;
170
170
  /**
171
171
  * Allow the current environment to be recognized as "local," (e.g. the filesystem), even if jQuery does not recognize it as such by default. The following protocols are currently recognized as local: file, *-extension, and widget. If the isLocal setting needs modification, it is recommended to do so once in the $.ajaxSetup() method.
172
172
  */
173
- isLocal?: boolean;
173
+ isLocal?: boolean | undefined;
174
174
  /**
175
175
  * Override the callback function name in a JSONP request. This value will be used instead of 'callback' in the 'callback=?' part of the query string in the url. So {jsonp:'onJSONPLoad'} would result in 'onJSONPLoad=?' passed to the server. As of jQuery 1.5, setting the jsonp option to false prevents jQuery from adding the "?callback" string to the URL or attempting to use "=?" for transformation. In this case, you should also explicitly set the jsonpCallback setting. For example, { jsonp: false, jsonpCallback: "callbackName" }. If you don't trust the target of your Ajax requests, consider setting the jsonp property to false for security reasons.
176
176
  */
177
- jsonp?: string | false;
177
+ jsonp?: string | false | undefined;
178
178
  /**
179
179
  * Specify the callback function name for a JSONP request. This value will be used instead of the random name automatically generated by jQuery. It is preferable to let jQuery generate a unique name as it'll make it easier to manage the requests and provide callbacks and error handling. You may want to specify the callback when you want to enable better browser caching of GET requests. As of jQuery 1.5, you can also use a function for this setting, in which case the value of jsonpCallback is set to the return value of that function.
180
180
  */
181
- jsonpCallback?: string | ((this: TContext) => string);
181
+ jsonpCallback?: string | ((this: TContext) => string) | undefined;
182
182
  /**
183
183
  * The HTTP method to use for the request (e.g. "POST", "GET", "PUT").
184
184
  */
185
- method?: string;
185
+ method?: string | undefined;
186
186
  /**
187
187
  * A mime type to override the XHR mime type.
188
188
  */
189
- mimeType?: string;
189
+ mimeType?: string | undefined;
190
190
  /**
191
191
  * A password to be used with XMLHttpRequest in response to an HTTP access authentication request.
192
192
  */
193
- password?: string;
193
+ password?: string | undefined;
194
194
  /**
195
195
  * By default, data passed in to the data option as an object (technically, anything other than a string) will be processed and transformed into a query string, fitting to the default content-type "application/x-www-form-urlencoded". If you want to send a DOMDocument, or other non-processed data, set this option to false.
196
196
  */
197
- processData?: boolean;
197
+ processData?: boolean | undefined;
198
198
  /**
199
199
  * Only applies when the "script" transport is used (e.g., cross-domain requests with "jsonp" or "script" dataType and "GET" type). Sets the charset attribute on the script tag used in the request. Used when the character set on the local page is not the same as the one on the remote script.
200
200
  */
201
- scriptCharset?: string;
201
+ scriptCharset?: string | undefined;
202
202
  /**
203
203
  * An object of numeric HTTP codes and functions to be called when the response has the corresponding code.
204
204
  *
205
205
  * If the request is successful, the status code functions take the same parameters as the success callback; if it results in an error (including 3xx redirect), they take the same parameters as the error callback.
206
206
  */
207
- statusCode?: StatusCodeCallbacks<TContext>;
207
+ statusCode?: StatusCodeCallbacks<TContext> | undefined;
208
208
  /**
209
209
  * A function to be called if the request succeeds. The function gets passed three arguments: The data returned from the server, formatted according to the dataType parameter or the dataFilter callback function, if specified; a string describing the status; and the jqXHR (in jQuery 1.4.x, XMLHttpRequest) object. As of jQuery 1.5, the success setting can accept an array of functions. Each function will be called in turn. This is an Ajax Event.
210
210
  */
211
- success?: TypeOrArray<SuccessCallback<TContext>>;
211
+ success?: TypeOrArray<SuccessCallback<TContext>> | undefined;
212
212
  /**
213
213
  * Set a timeout (in milliseconds) for the request. A value of 0 means there will be no timeout. This will override any global timeout set with $.ajaxSetup(). The timeout period starts at the point the $.ajax call is made; if several other requests are in progress and the browser has no connections available, it is possible for a request to time out before it can be sent. In jQuery 1.4.x and below, the XMLHttpRequest object will be in an invalid state if the request times out; accessing any object members may throw an exception. In Firefox 3.0+ only, script and JSONP requests cannot be cancelled by a timeout; the script will run even if it arrives after the timeout period.
214
214
  */
215
- timeout?: number;
215
+ timeout?: number | undefined;
216
216
  /**
217
217
  * Set this to true if you wish to use the traditional style of param serialization.
218
218
  */
219
- traditional?: boolean;
219
+ traditional?: boolean | undefined;
220
220
  /**
221
221
  * An alias for method. You should use type if you're using versions of jQuery prior to 1.9.0.
222
222
  */
223
- type?: string;
223
+ type?: string | undefined;
224
224
  /**
225
225
  * A username to be used with XMLHttpRequest in response to an HTTP access authentication request.
226
226
  */
227
- username?: string;
227
+ username?: string | undefined;
228
228
  // ActiveXObject requires "lib": ["scripthost"] which consumers would also require
229
229
  /**
230
230
  * Callback for creating the XMLHttpRequest object. Defaults to the ActiveXObject when available (IE), the XMLHttpRequest otherwise. Override to provide your own implementation for XMLHttpRequest or enhancements to the factory.
@@ -235,7 +235,7 @@ declare namespace JQuery {
235
235
  *
236
236
  * In jQuery 1.5, the withCredentials property was not propagated to the native XHR and thus CORS requests requiring it would ignore this flag. For this reason, we recommend using jQuery 1.5.1+ should you require the use of it.
237
237
  */
238
- xhrFields?: XHRFields;
238
+ xhrFields?: XHRFields | undefined;
239
239
  }
240
240
 
241
241
  // region StatusCodeCallbacks
@@ -247,412 +247,412 @@ declare namespace JQuery {
247
247
 
248
248
  // jQuery treats 2xx and 304 status codes as a success
249
249
 
250
- 200?: SuccessCallback<TContext>;
251
- 201?: SuccessCallback<TContext>;
252
- 202?: SuccessCallback<TContext>;
253
- 203?: SuccessCallback<TContext>;
254
- 204?: SuccessCallback<TContext>;
255
- 205?: SuccessCallback<TContext>;
256
- 206?: SuccessCallback<TContext>;
257
- 207?: SuccessCallback<TContext>;
258
- 208?: SuccessCallback<TContext>;
259
- 209?: SuccessCallback<TContext>;
260
- 210?: SuccessCallback<TContext>;
261
- 211?: SuccessCallback<TContext>;
262
- 212?: SuccessCallback<TContext>;
263
- 213?: SuccessCallback<TContext>;
264
- 214?: SuccessCallback<TContext>;
265
- 215?: SuccessCallback<TContext>;
266
- 216?: SuccessCallback<TContext>;
267
- 217?: SuccessCallback<TContext>;
268
- 218?: SuccessCallback<TContext>;
269
- 219?: SuccessCallback<TContext>;
270
- 220?: SuccessCallback<TContext>;
271
- 221?: SuccessCallback<TContext>;
272
- 222?: SuccessCallback<TContext>;
273
- 223?: SuccessCallback<TContext>;
274
- 224?: SuccessCallback<TContext>;
275
- 225?: SuccessCallback<TContext>;
276
- 226?: SuccessCallback<TContext>;
277
- 227?: SuccessCallback<TContext>;
278
- 228?: SuccessCallback<TContext>;
279
- 229?: SuccessCallback<TContext>;
280
- 230?: SuccessCallback<TContext>;
281
- 231?: SuccessCallback<TContext>;
282
- 232?: SuccessCallback<TContext>;
283
- 233?: SuccessCallback<TContext>;
284
- 234?: SuccessCallback<TContext>;
285
- 235?: SuccessCallback<TContext>;
286
- 236?: SuccessCallback<TContext>;
287
- 237?: SuccessCallback<TContext>;
288
- 238?: SuccessCallback<TContext>;
289
- 239?: SuccessCallback<TContext>;
290
- 240?: SuccessCallback<TContext>;
291
- 241?: SuccessCallback<TContext>;
292
- 242?: SuccessCallback<TContext>;
293
- 243?: SuccessCallback<TContext>;
294
- 244?: SuccessCallback<TContext>;
295
- 245?: SuccessCallback<TContext>;
296
- 246?: SuccessCallback<TContext>;
297
- 247?: SuccessCallback<TContext>;
298
- 248?: SuccessCallback<TContext>;
299
- 249?: SuccessCallback<TContext>;
300
- 250?: SuccessCallback<TContext>;
301
- 251?: SuccessCallback<TContext>;
302
- 252?: SuccessCallback<TContext>;
303
- 253?: SuccessCallback<TContext>;
304
- 254?: SuccessCallback<TContext>;
305
- 255?: SuccessCallback<TContext>;
306
- 256?: SuccessCallback<TContext>;
307
- 257?: SuccessCallback<TContext>;
308
- 258?: SuccessCallback<TContext>;
309
- 259?: SuccessCallback<TContext>;
310
- 260?: SuccessCallback<TContext>;
311
- 261?: SuccessCallback<TContext>;
312
- 262?: SuccessCallback<TContext>;
313
- 263?: SuccessCallback<TContext>;
314
- 264?: SuccessCallback<TContext>;
315
- 265?: SuccessCallback<TContext>;
316
- 266?: SuccessCallback<TContext>;
317
- 267?: SuccessCallback<TContext>;
318
- 268?: SuccessCallback<TContext>;
319
- 269?: SuccessCallback<TContext>;
320
- 270?: SuccessCallback<TContext>;
321
- 271?: SuccessCallback<TContext>;
322
- 272?: SuccessCallback<TContext>;
323
- 273?: SuccessCallback<TContext>;
324
- 274?: SuccessCallback<TContext>;
325
- 275?: SuccessCallback<TContext>;
326
- 276?: SuccessCallback<TContext>;
327
- 277?: SuccessCallback<TContext>;
328
- 278?: SuccessCallback<TContext>;
329
- 279?: SuccessCallback<TContext>;
330
- 280?: SuccessCallback<TContext>;
331
- 281?: SuccessCallback<TContext>;
332
- 282?: SuccessCallback<TContext>;
333
- 283?: SuccessCallback<TContext>;
334
- 284?: SuccessCallback<TContext>;
335
- 285?: SuccessCallback<TContext>;
336
- 286?: SuccessCallback<TContext>;
337
- 287?: SuccessCallback<TContext>;
338
- 288?: SuccessCallback<TContext>;
339
- 289?: SuccessCallback<TContext>;
340
- 290?: SuccessCallback<TContext>;
341
- 291?: SuccessCallback<TContext>;
342
- 292?: SuccessCallback<TContext>;
343
- 293?: SuccessCallback<TContext>;
344
- 294?: SuccessCallback<TContext>;
345
- 295?: SuccessCallback<TContext>;
346
- 296?: SuccessCallback<TContext>;
347
- 297?: SuccessCallback<TContext>;
348
- 298?: SuccessCallback<TContext>;
349
- 299?: SuccessCallback<TContext>;
350
- 304?: SuccessCallback<TContext>;
250
+ 200?: SuccessCallback<TContext> | undefined;
251
+ 201?: SuccessCallback<TContext> | undefined;
252
+ 202?: SuccessCallback<TContext> | undefined;
253
+ 203?: SuccessCallback<TContext> | undefined;
254
+ 204?: SuccessCallback<TContext> | undefined;
255
+ 205?: SuccessCallback<TContext> | undefined;
256
+ 206?: SuccessCallback<TContext> | undefined;
257
+ 207?: SuccessCallback<TContext> | undefined;
258
+ 208?: SuccessCallback<TContext> | undefined;
259
+ 209?: SuccessCallback<TContext> | undefined;
260
+ 210?: SuccessCallback<TContext> | undefined;
261
+ 211?: SuccessCallback<TContext> | undefined;
262
+ 212?: SuccessCallback<TContext> | undefined;
263
+ 213?: SuccessCallback<TContext> | undefined;
264
+ 214?: SuccessCallback<TContext> | undefined;
265
+ 215?: SuccessCallback<TContext> | undefined;
266
+ 216?: SuccessCallback<TContext> | undefined;
267
+ 217?: SuccessCallback<TContext> | undefined;
268
+ 218?: SuccessCallback<TContext> | undefined;
269
+ 219?: SuccessCallback<TContext> | undefined;
270
+ 220?: SuccessCallback<TContext> | undefined;
271
+ 221?: SuccessCallback<TContext> | undefined;
272
+ 222?: SuccessCallback<TContext> | undefined;
273
+ 223?: SuccessCallback<TContext> | undefined;
274
+ 224?: SuccessCallback<TContext> | undefined;
275
+ 225?: SuccessCallback<TContext> | undefined;
276
+ 226?: SuccessCallback<TContext> | undefined;
277
+ 227?: SuccessCallback<TContext> | undefined;
278
+ 228?: SuccessCallback<TContext> | undefined;
279
+ 229?: SuccessCallback<TContext> | undefined;
280
+ 230?: SuccessCallback<TContext> | undefined;
281
+ 231?: SuccessCallback<TContext> | undefined;
282
+ 232?: SuccessCallback<TContext> | undefined;
283
+ 233?: SuccessCallback<TContext> | undefined;
284
+ 234?: SuccessCallback<TContext> | undefined;
285
+ 235?: SuccessCallback<TContext> | undefined;
286
+ 236?: SuccessCallback<TContext> | undefined;
287
+ 237?: SuccessCallback<TContext> | undefined;
288
+ 238?: SuccessCallback<TContext> | undefined;
289
+ 239?: SuccessCallback<TContext> | undefined;
290
+ 240?: SuccessCallback<TContext> | undefined;
291
+ 241?: SuccessCallback<TContext> | undefined;
292
+ 242?: SuccessCallback<TContext> | undefined;
293
+ 243?: SuccessCallback<TContext> | undefined;
294
+ 244?: SuccessCallback<TContext> | undefined;
295
+ 245?: SuccessCallback<TContext> | undefined;
296
+ 246?: SuccessCallback<TContext> | undefined;
297
+ 247?: SuccessCallback<TContext> | undefined;
298
+ 248?: SuccessCallback<TContext> | undefined;
299
+ 249?: SuccessCallback<TContext> | undefined;
300
+ 250?: SuccessCallback<TContext> | undefined;
301
+ 251?: SuccessCallback<TContext> | undefined;
302
+ 252?: SuccessCallback<TContext> | undefined;
303
+ 253?: SuccessCallback<TContext> | undefined;
304
+ 254?: SuccessCallback<TContext> | undefined;
305
+ 255?: SuccessCallback<TContext> | undefined;
306
+ 256?: SuccessCallback<TContext> | undefined;
307
+ 257?: SuccessCallback<TContext> | undefined;
308
+ 258?: SuccessCallback<TContext> | undefined;
309
+ 259?: SuccessCallback<TContext> | undefined;
310
+ 260?: SuccessCallback<TContext> | undefined;
311
+ 261?: SuccessCallback<TContext> | undefined;
312
+ 262?: SuccessCallback<TContext> | undefined;
313
+ 263?: SuccessCallback<TContext> | undefined;
314
+ 264?: SuccessCallback<TContext> | undefined;
315
+ 265?: SuccessCallback<TContext> | undefined;
316
+ 266?: SuccessCallback<TContext> | undefined;
317
+ 267?: SuccessCallback<TContext> | undefined;
318
+ 268?: SuccessCallback<TContext> | undefined;
319
+ 269?: SuccessCallback<TContext> | undefined;
320
+ 270?: SuccessCallback<TContext> | undefined;
321
+ 271?: SuccessCallback<TContext> | undefined;
322
+ 272?: SuccessCallback<TContext> | undefined;
323
+ 273?: SuccessCallback<TContext> | undefined;
324
+ 274?: SuccessCallback<TContext> | undefined;
325
+ 275?: SuccessCallback<TContext> | undefined;
326
+ 276?: SuccessCallback<TContext> | undefined;
327
+ 277?: SuccessCallback<TContext> | undefined;
328
+ 278?: SuccessCallback<TContext> | undefined;
329
+ 279?: SuccessCallback<TContext> | undefined;
330
+ 280?: SuccessCallback<TContext> | undefined;
331
+ 281?: SuccessCallback<TContext> | undefined;
332
+ 282?: SuccessCallback<TContext> | undefined;
333
+ 283?: SuccessCallback<TContext> | undefined;
334
+ 284?: SuccessCallback<TContext> | undefined;
335
+ 285?: SuccessCallback<TContext> | undefined;
336
+ 286?: SuccessCallback<TContext> | undefined;
337
+ 287?: SuccessCallback<TContext> | undefined;
338
+ 288?: SuccessCallback<TContext> | undefined;
339
+ 289?: SuccessCallback<TContext> | undefined;
340
+ 290?: SuccessCallback<TContext> | undefined;
341
+ 291?: SuccessCallback<TContext> | undefined;
342
+ 292?: SuccessCallback<TContext> | undefined;
343
+ 293?: SuccessCallback<TContext> | undefined;
344
+ 294?: SuccessCallback<TContext> | undefined;
345
+ 295?: SuccessCallback<TContext> | undefined;
346
+ 296?: SuccessCallback<TContext> | undefined;
347
+ 297?: SuccessCallback<TContext> | undefined;
348
+ 298?: SuccessCallback<TContext> | undefined;
349
+ 299?: SuccessCallback<TContext> | undefined;
350
+ 304?: SuccessCallback<TContext> | undefined;
351
351
 
352
352
  // #endregion
353
353
 
354
354
  // region Error Status Codes
355
355
  // #region Error Status Codes
356
356
 
357
- 300?: ErrorCallback<TContext>;
358
- 301?: ErrorCallback<TContext>;
359
- 302?: ErrorCallback<TContext>;
360
- 303?: ErrorCallback<TContext>;
361
- 305?: ErrorCallback<TContext>;
362
- 306?: ErrorCallback<TContext>;
363
- 307?: ErrorCallback<TContext>;
364
- 308?: ErrorCallback<TContext>;
365
- 309?: ErrorCallback<TContext>;
366
- 310?: ErrorCallback<TContext>;
367
- 311?: ErrorCallback<TContext>;
368
- 312?: ErrorCallback<TContext>;
369
- 313?: ErrorCallback<TContext>;
370
- 314?: ErrorCallback<TContext>;
371
- 315?: ErrorCallback<TContext>;
372
- 316?: ErrorCallback<TContext>;
373
- 317?: ErrorCallback<TContext>;
374
- 318?: ErrorCallback<TContext>;
375
- 319?: ErrorCallback<TContext>;
376
- 320?: ErrorCallback<TContext>;
377
- 321?: ErrorCallback<TContext>;
378
- 322?: ErrorCallback<TContext>;
379
- 323?: ErrorCallback<TContext>;
380
- 324?: ErrorCallback<TContext>;
381
- 325?: ErrorCallback<TContext>;
382
- 326?: ErrorCallback<TContext>;
383
- 327?: ErrorCallback<TContext>;
384
- 328?: ErrorCallback<TContext>;
385
- 329?: ErrorCallback<TContext>;
386
- 330?: ErrorCallback<TContext>;
387
- 331?: ErrorCallback<TContext>;
388
- 332?: ErrorCallback<TContext>;
389
- 333?: ErrorCallback<TContext>;
390
- 334?: ErrorCallback<TContext>;
391
- 335?: ErrorCallback<TContext>;
392
- 336?: ErrorCallback<TContext>;
393
- 337?: ErrorCallback<TContext>;
394
- 338?: ErrorCallback<TContext>;
395
- 339?: ErrorCallback<TContext>;
396
- 340?: ErrorCallback<TContext>;
397
- 341?: ErrorCallback<TContext>;
398
- 342?: ErrorCallback<TContext>;
399
- 343?: ErrorCallback<TContext>;
400
- 344?: ErrorCallback<TContext>;
401
- 345?: ErrorCallback<TContext>;
402
- 346?: ErrorCallback<TContext>;
403
- 347?: ErrorCallback<TContext>;
404
- 348?: ErrorCallback<TContext>;
405
- 349?: ErrorCallback<TContext>;
406
- 350?: ErrorCallback<TContext>;
407
- 351?: ErrorCallback<TContext>;
408
- 352?: ErrorCallback<TContext>;
409
- 353?: ErrorCallback<TContext>;
410
- 354?: ErrorCallback<TContext>;
411
- 355?: ErrorCallback<TContext>;
412
- 356?: ErrorCallback<TContext>;
413
- 357?: ErrorCallback<TContext>;
414
- 358?: ErrorCallback<TContext>;
415
- 359?: ErrorCallback<TContext>;
416
- 360?: ErrorCallback<TContext>;
417
- 361?: ErrorCallback<TContext>;
418
- 362?: ErrorCallback<TContext>;
419
- 363?: ErrorCallback<TContext>;
420
- 364?: ErrorCallback<TContext>;
421
- 365?: ErrorCallback<TContext>;
422
- 366?: ErrorCallback<TContext>;
423
- 367?: ErrorCallback<TContext>;
424
- 368?: ErrorCallback<TContext>;
425
- 369?: ErrorCallback<TContext>;
426
- 370?: ErrorCallback<TContext>;
427
- 371?: ErrorCallback<TContext>;
428
- 372?: ErrorCallback<TContext>;
429
- 373?: ErrorCallback<TContext>;
430
- 374?: ErrorCallback<TContext>;
431
- 375?: ErrorCallback<TContext>;
432
- 376?: ErrorCallback<TContext>;
433
- 377?: ErrorCallback<TContext>;
434
- 378?: ErrorCallback<TContext>;
435
- 379?: ErrorCallback<TContext>;
436
- 380?: ErrorCallback<TContext>;
437
- 381?: ErrorCallback<TContext>;
438
- 382?: ErrorCallback<TContext>;
439
- 383?: ErrorCallback<TContext>;
440
- 384?: ErrorCallback<TContext>;
441
- 385?: ErrorCallback<TContext>;
442
- 386?: ErrorCallback<TContext>;
443
- 387?: ErrorCallback<TContext>;
444
- 388?: ErrorCallback<TContext>;
445
- 389?: ErrorCallback<TContext>;
446
- 390?: ErrorCallback<TContext>;
447
- 391?: ErrorCallback<TContext>;
448
- 392?: ErrorCallback<TContext>;
449
- 393?: ErrorCallback<TContext>;
450
- 394?: ErrorCallback<TContext>;
451
- 395?: ErrorCallback<TContext>;
452
- 396?: ErrorCallback<TContext>;
453
- 397?: ErrorCallback<TContext>;
454
- 398?: ErrorCallback<TContext>;
455
- 399?: ErrorCallback<TContext>;
456
- 400?: ErrorCallback<TContext>;
457
- 401?: ErrorCallback<TContext>;
458
- 402?: ErrorCallback<TContext>;
459
- 403?: ErrorCallback<TContext>;
460
- 404?: ErrorCallback<TContext>;
461
- 405?: ErrorCallback<TContext>;
462
- 406?: ErrorCallback<TContext>;
463
- 407?: ErrorCallback<TContext>;
464
- 408?: ErrorCallback<TContext>;
465
- 409?: ErrorCallback<TContext>;
466
- 410?: ErrorCallback<TContext>;
467
- 411?: ErrorCallback<TContext>;
468
- 412?: ErrorCallback<TContext>;
469
- 413?: ErrorCallback<TContext>;
470
- 414?: ErrorCallback<TContext>;
471
- 415?: ErrorCallback<TContext>;
472
- 416?: ErrorCallback<TContext>;
473
- 417?: ErrorCallback<TContext>;
474
- 418?: ErrorCallback<TContext>;
475
- 419?: ErrorCallback<TContext>;
476
- 420?: ErrorCallback<TContext>;
477
- 421?: ErrorCallback<TContext>;
478
- 422?: ErrorCallback<TContext>;
479
- 423?: ErrorCallback<TContext>;
480
- 424?: ErrorCallback<TContext>;
481
- 425?: ErrorCallback<TContext>;
482
- 426?: ErrorCallback<TContext>;
483
- 427?: ErrorCallback<TContext>;
484
- 428?: ErrorCallback<TContext>;
485
- 429?: ErrorCallback<TContext>;
486
- 430?: ErrorCallback<TContext>;
487
- 431?: ErrorCallback<TContext>;
488
- 432?: ErrorCallback<TContext>;
489
- 433?: ErrorCallback<TContext>;
490
- 434?: ErrorCallback<TContext>;
491
- 435?: ErrorCallback<TContext>;
492
- 436?: ErrorCallback<TContext>;
493
- 437?: ErrorCallback<TContext>;
494
- 438?: ErrorCallback<TContext>;
495
- 439?: ErrorCallback<TContext>;
496
- 440?: ErrorCallback<TContext>;
497
- 441?: ErrorCallback<TContext>;
498
- 442?: ErrorCallback<TContext>;
499
- 443?: ErrorCallback<TContext>;
500
- 444?: ErrorCallback<TContext>;
501
- 445?: ErrorCallback<TContext>;
502
- 446?: ErrorCallback<TContext>;
503
- 447?: ErrorCallback<TContext>;
504
- 448?: ErrorCallback<TContext>;
505
- 449?: ErrorCallback<TContext>;
506
- 450?: ErrorCallback<TContext>;
507
- 451?: ErrorCallback<TContext>;
508
- 452?: ErrorCallback<TContext>;
509
- 453?: ErrorCallback<TContext>;
510
- 454?: ErrorCallback<TContext>;
511
- 455?: ErrorCallback<TContext>;
512
- 456?: ErrorCallback<TContext>;
513
- 457?: ErrorCallback<TContext>;
514
- 458?: ErrorCallback<TContext>;
515
- 459?: ErrorCallback<TContext>;
516
- 460?: ErrorCallback<TContext>;
517
- 461?: ErrorCallback<TContext>;
518
- 462?: ErrorCallback<TContext>;
519
- 463?: ErrorCallback<TContext>;
520
- 464?: ErrorCallback<TContext>;
521
- 465?: ErrorCallback<TContext>;
522
- 466?: ErrorCallback<TContext>;
523
- 467?: ErrorCallback<TContext>;
524
- 468?: ErrorCallback<TContext>;
525
- 469?: ErrorCallback<TContext>;
526
- 470?: ErrorCallback<TContext>;
527
- 471?: ErrorCallback<TContext>;
528
- 472?: ErrorCallback<TContext>;
529
- 473?: ErrorCallback<TContext>;
530
- 474?: ErrorCallback<TContext>;
531
- 475?: ErrorCallback<TContext>;
532
- 476?: ErrorCallback<TContext>;
533
- 477?: ErrorCallback<TContext>;
534
- 478?: ErrorCallback<TContext>;
535
- 479?: ErrorCallback<TContext>;
536
- 480?: ErrorCallback<TContext>;
537
- 481?: ErrorCallback<TContext>;
538
- 482?: ErrorCallback<TContext>;
539
- 483?: ErrorCallback<TContext>;
540
- 484?: ErrorCallback<TContext>;
541
- 485?: ErrorCallback<TContext>;
542
- 486?: ErrorCallback<TContext>;
543
- 487?: ErrorCallback<TContext>;
544
- 488?: ErrorCallback<TContext>;
545
- 489?: ErrorCallback<TContext>;
546
- 490?: ErrorCallback<TContext>;
547
- 491?: ErrorCallback<TContext>;
548
- 492?: ErrorCallback<TContext>;
549
- 493?: ErrorCallback<TContext>;
550
- 494?: ErrorCallback<TContext>;
551
- 495?: ErrorCallback<TContext>;
552
- 496?: ErrorCallback<TContext>;
553
- 497?: ErrorCallback<TContext>;
554
- 498?: ErrorCallback<TContext>;
555
- 499?: ErrorCallback<TContext>;
556
- 500?: ErrorCallback<TContext>;
557
- 501?: ErrorCallback<TContext>;
558
- 502?: ErrorCallback<TContext>;
559
- 503?: ErrorCallback<TContext>;
560
- 504?: ErrorCallback<TContext>;
561
- 505?: ErrorCallback<TContext>;
562
- 506?: ErrorCallback<TContext>;
563
- 507?: ErrorCallback<TContext>;
564
- 508?: ErrorCallback<TContext>;
565
- 509?: ErrorCallback<TContext>;
566
- 510?: ErrorCallback<TContext>;
567
- 511?: ErrorCallback<TContext>;
568
- 512?: ErrorCallback<TContext>;
569
- 513?: ErrorCallback<TContext>;
570
- 514?: ErrorCallback<TContext>;
571
- 515?: ErrorCallback<TContext>;
572
- 516?: ErrorCallback<TContext>;
573
- 517?: ErrorCallback<TContext>;
574
- 518?: ErrorCallback<TContext>;
575
- 519?: ErrorCallback<TContext>;
576
- 520?: ErrorCallback<TContext>;
577
- 521?: ErrorCallback<TContext>;
578
- 522?: ErrorCallback<TContext>;
579
- 523?: ErrorCallback<TContext>;
580
- 524?: ErrorCallback<TContext>;
581
- 525?: ErrorCallback<TContext>;
582
- 526?: ErrorCallback<TContext>;
583
- 527?: ErrorCallback<TContext>;
584
- 528?: ErrorCallback<TContext>;
585
- 529?: ErrorCallback<TContext>;
586
- 530?: ErrorCallback<TContext>;
587
- 531?: ErrorCallback<TContext>;
588
- 532?: ErrorCallback<TContext>;
589
- 533?: ErrorCallback<TContext>;
590
- 534?: ErrorCallback<TContext>;
591
- 535?: ErrorCallback<TContext>;
592
- 536?: ErrorCallback<TContext>;
593
- 537?: ErrorCallback<TContext>;
594
- 538?: ErrorCallback<TContext>;
595
- 539?: ErrorCallback<TContext>;
596
- 540?: ErrorCallback<TContext>;
597
- 541?: ErrorCallback<TContext>;
598
- 542?: ErrorCallback<TContext>;
599
- 543?: ErrorCallback<TContext>;
600
- 544?: ErrorCallback<TContext>;
601
- 545?: ErrorCallback<TContext>;
602
- 546?: ErrorCallback<TContext>;
603
- 547?: ErrorCallback<TContext>;
604
- 548?: ErrorCallback<TContext>;
605
- 549?: ErrorCallback<TContext>;
606
- 550?: ErrorCallback<TContext>;
607
- 551?: ErrorCallback<TContext>;
608
- 552?: ErrorCallback<TContext>;
609
- 553?: ErrorCallback<TContext>;
610
- 554?: ErrorCallback<TContext>;
611
- 555?: ErrorCallback<TContext>;
612
- 556?: ErrorCallback<TContext>;
613
- 557?: ErrorCallback<TContext>;
614
- 558?: ErrorCallback<TContext>;
615
- 559?: ErrorCallback<TContext>;
616
- 560?: ErrorCallback<TContext>;
617
- 561?: ErrorCallback<TContext>;
618
- 562?: ErrorCallback<TContext>;
619
- 563?: ErrorCallback<TContext>;
620
- 564?: ErrorCallback<TContext>;
621
- 565?: ErrorCallback<TContext>;
622
- 566?: ErrorCallback<TContext>;
623
- 567?: ErrorCallback<TContext>;
624
- 568?: ErrorCallback<TContext>;
625
- 569?: ErrorCallback<TContext>;
626
- 570?: ErrorCallback<TContext>;
627
- 571?: ErrorCallback<TContext>;
628
- 572?: ErrorCallback<TContext>;
629
- 573?: ErrorCallback<TContext>;
630
- 574?: ErrorCallback<TContext>;
631
- 575?: ErrorCallback<TContext>;
632
- 576?: ErrorCallback<TContext>;
633
- 577?: ErrorCallback<TContext>;
634
- 578?: ErrorCallback<TContext>;
635
- 579?: ErrorCallback<TContext>;
636
- 580?: ErrorCallback<TContext>;
637
- 581?: ErrorCallback<TContext>;
638
- 582?: ErrorCallback<TContext>;
639
- 583?: ErrorCallback<TContext>;
640
- 584?: ErrorCallback<TContext>;
641
- 585?: ErrorCallback<TContext>;
642
- 586?: ErrorCallback<TContext>;
643
- 587?: ErrorCallback<TContext>;
644
- 588?: ErrorCallback<TContext>;
645
- 589?: ErrorCallback<TContext>;
646
- 590?: ErrorCallback<TContext>;
647
- 591?: ErrorCallback<TContext>;
648
- 592?: ErrorCallback<TContext>;
649
- 593?: ErrorCallback<TContext>;
650
- 594?: ErrorCallback<TContext>;
651
- 595?: ErrorCallback<TContext>;
652
- 596?: ErrorCallback<TContext>;
653
- 597?: ErrorCallback<TContext>;
654
- 598?: ErrorCallback<TContext>;
655
- 599?: ErrorCallback<TContext>;
357
+ 300?: ErrorCallback<TContext> | undefined;
358
+ 301?: ErrorCallback<TContext> | undefined;
359
+ 302?: ErrorCallback<TContext> | undefined;
360
+ 303?: ErrorCallback<TContext> | undefined;
361
+ 305?: ErrorCallback<TContext> | undefined;
362
+ 306?: ErrorCallback<TContext> | undefined;
363
+ 307?: ErrorCallback<TContext> | undefined;
364
+ 308?: ErrorCallback<TContext> | undefined;
365
+ 309?: ErrorCallback<TContext> | undefined;
366
+ 310?: ErrorCallback<TContext> | undefined;
367
+ 311?: ErrorCallback<TContext> | undefined;
368
+ 312?: ErrorCallback<TContext> | undefined;
369
+ 313?: ErrorCallback<TContext> | undefined;
370
+ 314?: ErrorCallback<TContext> | undefined;
371
+ 315?: ErrorCallback<TContext> | undefined;
372
+ 316?: ErrorCallback<TContext> | undefined;
373
+ 317?: ErrorCallback<TContext> | undefined;
374
+ 318?: ErrorCallback<TContext> | undefined;
375
+ 319?: ErrorCallback<TContext> | undefined;
376
+ 320?: ErrorCallback<TContext> | undefined;
377
+ 321?: ErrorCallback<TContext> | undefined;
378
+ 322?: ErrorCallback<TContext> | undefined;
379
+ 323?: ErrorCallback<TContext> | undefined;
380
+ 324?: ErrorCallback<TContext> | undefined;
381
+ 325?: ErrorCallback<TContext> | undefined;
382
+ 326?: ErrorCallback<TContext> | undefined;
383
+ 327?: ErrorCallback<TContext> | undefined;
384
+ 328?: ErrorCallback<TContext> | undefined;
385
+ 329?: ErrorCallback<TContext> | undefined;
386
+ 330?: ErrorCallback<TContext> | undefined;
387
+ 331?: ErrorCallback<TContext> | undefined;
388
+ 332?: ErrorCallback<TContext> | undefined;
389
+ 333?: ErrorCallback<TContext> | undefined;
390
+ 334?: ErrorCallback<TContext> | undefined;
391
+ 335?: ErrorCallback<TContext> | undefined;
392
+ 336?: ErrorCallback<TContext> | undefined;
393
+ 337?: ErrorCallback<TContext> | undefined;
394
+ 338?: ErrorCallback<TContext> | undefined;
395
+ 339?: ErrorCallback<TContext> | undefined;
396
+ 340?: ErrorCallback<TContext> | undefined;
397
+ 341?: ErrorCallback<TContext> | undefined;
398
+ 342?: ErrorCallback<TContext> | undefined;
399
+ 343?: ErrorCallback<TContext> | undefined;
400
+ 344?: ErrorCallback<TContext> | undefined;
401
+ 345?: ErrorCallback<TContext> | undefined;
402
+ 346?: ErrorCallback<TContext> | undefined;
403
+ 347?: ErrorCallback<TContext> | undefined;
404
+ 348?: ErrorCallback<TContext> | undefined;
405
+ 349?: ErrorCallback<TContext> | undefined;
406
+ 350?: ErrorCallback<TContext> | undefined;
407
+ 351?: ErrorCallback<TContext> | undefined;
408
+ 352?: ErrorCallback<TContext> | undefined;
409
+ 353?: ErrorCallback<TContext> | undefined;
410
+ 354?: ErrorCallback<TContext> | undefined;
411
+ 355?: ErrorCallback<TContext> | undefined;
412
+ 356?: ErrorCallback<TContext> | undefined;
413
+ 357?: ErrorCallback<TContext> | undefined;
414
+ 358?: ErrorCallback<TContext> | undefined;
415
+ 359?: ErrorCallback<TContext> | undefined;
416
+ 360?: ErrorCallback<TContext> | undefined;
417
+ 361?: ErrorCallback<TContext> | undefined;
418
+ 362?: ErrorCallback<TContext> | undefined;
419
+ 363?: ErrorCallback<TContext> | undefined;
420
+ 364?: ErrorCallback<TContext> | undefined;
421
+ 365?: ErrorCallback<TContext> | undefined;
422
+ 366?: ErrorCallback<TContext> | undefined;
423
+ 367?: ErrorCallback<TContext> | undefined;
424
+ 368?: ErrorCallback<TContext> | undefined;
425
+ 369?: ErrorCallback<TContext> | undefined;
426
+ 370?: ErrorCallback<TContext> | undefined;
427
+ 371?: ErrorCallback<TContext> | undefined;
428
+ 372?: ErrorCallback<TContext> | undefined;
429
+ 373?: ErrorCallback<TContext> | undefined;
430
+ 374?: ErrorCallback<TContext> | undefined;
431
+ 375?: ErrorCallback<TContext> | undefined;
432
+ 376?: ErrorCallback<TContext> | undefined;
433
+ 377?: ErrorCallback<TContext> | undefined;
434
+ 378?: ErrorCallback<TContext> | undefined;
435
+ 379?: ErrorCallback<TContext> | undefined;
436
+ 380?: ErrorCallback<TContext> | undefined;
437
+ 381?: ErrorCallback<TContext> | undefined;
438
+ 382?: ErrorCallback<TContext> | undefined;
439
+ 383?: ErrorCallback<TContext> | undefined;
440
+ 384?: ErrorCallback<TContext> | undefined;
441
+ 385?: ErrorCallback<TContext> | undefined;
442
+ 386?: ErrorCallback<TContext> | undefined;
443
+ 387?: ErrorCallback<TContext> | undefined;
444
+ 388?: ErrorCallback<TContext> | undefined;
445
+ 389?: ErrorCallback<TContext> | undefined;
446
+ 390?: ErrorCallback<TContext> | undefined;
447
+ 391?: ErrorCallback<TContext> | undefined;
448
+ 392?: ErrorCallback<TContext> | undefined;
449
+ 393?: ErrorCallback<TContext> | undefined;
450
+ 394?: ErrorCallback<TContext> | undefined;
451
+ 395?: ErrorCallback<TContext> | undefined;
452
+ 396?: ErrorCallback<TContext> | undefined;
453
+ 397?: ErrorCallback<TContext> | undefined;
454
+ 398?: ErrorCallback<TContext> | undefined;
455
+ 399?: ErrorCallback<TContext> | undefined;
456
+ 400?: ErrorCallback<TContext> | undefined;
457
+ 401?: ErrorCallback<TContext> | undefined;
458
+ 402?: ErrorCallback<TContext> | undefined;
459
+ 403?: ErrorCallback<TContext> | undefined;
460
+ 404?: ErrorCallback<TContext> | undefined;
461
+ 405?: ErrorCallback<TContext> | undefined;
462
+ 406?: ErrorCallback<TContext> | undefined;
463
+ 407?: ErrorCallback<TContext> | undefined;
464
+ 408?: ErrorCallback<TContext> | undefined;
465
+ 409?: ErrorCallback<TContext> | undefined;
466
+ 410?: ErrorCallback<TContext> | undefined;
467
+ 411?: ErrorCallback<TContext> | undefined;
468
+ 412?: ErrorCallback<TContext> | undefined;
469
+ 413?: ErrorCallback<TContext> | undefined;
470
+ 414?: ErrorCallback<TContext> | undefined;
471
+ 415?: ErrorCallback<TContext> | undefined;
472
+ 416?: ErrorCallback<TContext> | undefined;
473
+ 417?: ErrorCallback<TContext> | undefined;
474
+ 418?: ErrorCallback<TContext> | undefined;
475
+ 419?: ErrorCallback<TContext> | undefined;
476
+ 420?: ErrorCallback<TContext> | undefined;
477
+ 421?: ErrorCallback<TContext> | undefined;
478
+ 422?: ErrorCallback<TContext> | undefined;
479
+ 423?: ErrorCallback<TContext> | undefined;
480
+ 424?: ErrorCallback<TContext> | undefined;
481
+ 425?: ErrorCallback<TContext> | undefined;
482
+ 426?: ErrorCallback<TContext> | undefined;
483
+ 427?: ErrorCallback<TContext> | undefined;
484
+ 428?: ErrorCallback<TContext> | undefined;
485
+ 429?: ErrorCallback<TContext> | undefined;
486
+ 430?: ErrorCallback<TContext> | undefined;
487
+ 431?: ErrorCallback<TContext> | undefined;
488
+ 432?: ErrorCallback<TContext> | undefined;
489
+ 433?: ErrorCallback<TContext> | undefined;
490
+ 434?: ErrorCallback<TContext> | undefined;
491
+ 435?: ErrorCallback<TContext> | undefined;
492
+ 436?: ErrorCallback<TContext> | undefined;
493
+ 437?: ErrorCallback<TContext> | undefined;
494
+ 438?: ErrorCallback<TContext> | undefined;
495
+ 439?: ErrorCallback<TContext> | undefined;
496
+ 440?: ErrorCallback<TContext> | undefined;
497
+ 441?: ErrorCallback<TContext> | undefined;
498
+ 442?: ErrorCallback<TContext> | undefined;
499
+ 443?: ErrorCallback<TContext> | undefined;
500
+ 444?: ErrorCallback<TContext> | undefined;
501
+ 445?: ErrorCallback<TContext> | undefined;
502
+ 446?: ErrorCallback<TContext> | undefined;
503
+ 447?: ErrorCallback<TContext> | undefined;
504
+ 448?: ErrorCallback<TContext> | undefined;
505
+ 449?: ErrorCallback<TContext> | undefined;
506
+ 450?: ErrorCallback<TContext> | undefined;
507
+ 451?: ErrorCallback<TContext> | undefined;
508
+ 452?: ErrorCallback<TContext> | undefined;
509
+ 453?: ErrorCallback<TContext> | undefined;
510
+ 454?: ErrorCallback<TContext> | undefined;
511
+ 455?: ErrorCallback<TContext> | undefined;
512
+ 456?: ErrorCallback<TContext> | undefined;
513
+ 457?: ErrorCallback<TContext> | undefined;
514
+ 458?: ErrorCallback<TContext> | undefined;
515
+ 459?: ErrorCallback<TContext> | undefined;
516
+ 460?: ErrorCallback<TContext> | undefined;
517
+ 461?: ErrorCallback<TContext> | undefined;
518
+ 462?: ErrorCallback<TContext> | undefined;
519
+ 463?: ErrorCallback<TContext> | undefined;
520
+ 464?: ErrorCallback<TContext> | undefined;
521
+ 465?: ErrorCallback<TContext> | undefined;
522
+ 466?: ErrorCallback<TContext> | undefined;
523
+ 467?: ErrorCallback<TContext> | undefined;
524
+ 468?: ErrorCallback<TContext> | undefined;
525
+ 469?: ErrorCallback<TContext> | undefined;
526
+ 470?: ErrorCallback<TContext> | undefined;
527
+ 471?: ErrorCallback<TContext> | undefined;
528
+ 472?: ErrorCallback<TContext> | undefined;
529
+ 473?: ErrorCallback<TContext> | undefined;
530
+ 474?: ErrorCallback<TContext> | undefined;
531
+ 475?: ErrorCallback<TContext> | undefined;
532
+ 476?: ErrorCallback<TContext> | undefined;
533
+ 477?: ErrorCallback<TContext> | undefined;
534
+ 478?: ErrorCallback<TContext> | undefined;
535
+ 479?: ErrorCallback<TContext> | undefined;
536
+ 480?: ErrorCallback<TContext> | undefined;
537
+ 481?: ErrorCallback<TContext> | undefined;
538
+ 482?: ErrorCallback<TContext> | undefined;
539
+ 483?: ErrorCallback<TContext> | undefined;
540
+ 484?: ErrorCallback<TContext> | undefined;
541
+ 485?: ErrorCallback<TContext> | undefined;
542
+ 486?: ErrorCallback<TContext> | undefined;
543
+ 487?: ErrorCallback<TContext> | undefined;
544
+ 488?: ErrorCallback<TContext> | undefined;
545
+ 489?: ErrorCallback<TContext> | undefined;
546
+ 490?: ErrorCallback<TContext> | undefined;
547
+ 491?: ErrorCallback<TContext> | undefined;
548
+ 492?: ErrorCallback<TContext> | undefined;
549
+ 493?: ErrorCallback<TContext> | undefined;
550
+ 494?: ErrorCallback<TContext> | undefined;
551
+ 495?: ErrorCallback<TContext> | undefined;
552
+ 496?: ErrorCallback<TContext> | undefined;
553
+ 497?: ErrorCallback<TContext> | undefined;
554
+ 498?: ErrorCallback<TContext> | undefined;
555
+ 499?: ErrorCallback<TContext> | undefined;
556
+ 500?: ErrorCallback<TContext> | undefined;
557
+ 501?: ErrorCallback<TContext> | undefined;
558
+ 502?: ErrorCallback<TContext> | undefined;
559
+ 503?: ErrorCallback<TContext> | undefined;
560
+ 504?: ErrorCallback<TContext> | undefined;
561
+ 505?: ErrorCallback<TContext> | undefined;
562
+ 506?: ErrorCallback<TContext> | undefined;
563
+ 507?: ErrorCallback<TContext> | undefined;
564
+ 508?: ErrorCallback<TContext> | undefined;
565
+ 509?: ErrorCallback<TContext> | undefined;
566
+ 510?: ErrorCallback<TContext> | undefined;
567
+ 511?: ErrorCallback<TContext> | undefined;
568
+ 512?: ErrorCallback<TContext> | undefined;
569
+ 513?: ErrorCallback<TContext> | undefined;
570
+ 514?: ErrorCallback<TContext> | undefined;
571
+ 515?: ErrorCallback<TContext> | undefined;
572
+ 516?: ErrorCallback<TContext> | undefined;
573
+ 517?: ErrorCallback<TContext> | undefined;
574
+ 518?: ErrorCallback<TContext> | undefined;
575
+ 519?: ErrorCallback<TContext> | undefined;
576
+ 520?: ErrorCallback<TContext> | undefined;
577
+ 521?: ErrorCallback<TContext> | undefined;
578
+ 522?: ErrorCallback<TContext> | undefined;
579
+ 523?: ErrorCallback<TContext> | undefined;
580
+ 524?: ErrorCallback<TContext> | undefined;
581
+ 525?: ErrorCallback<TContext> | undefined;
582
+ 526?: ErrorCallback<TContext> | undefined;
583
+ 527?: ErrorCallback<TContext> | undefined;
584
+ 528?: ErrorCallback<TContext> | undefined;
585
+ 529?: ErrorCallback<TContext> | undefined;
586
+ 530?: ErrorCallback<TContext> | undefined;
587
+ 531?: ErrorCallback<TContext> | undefined;
588
+ 532?: ErrorCallback<TContext> | undefined;
589
+ 533?: ErrorCallback<TContext> | undefined;
590
+ 534?: ErrorCallback<TContext> | undefined;
591
+ 535?: ErrorCallback<TContext> | undefined;
592
+ 536?: ErrorCallback<TContext> | undefined;
593
+ 537?: ErrorCallback<TContext> | undefined;
594
+ 538?: ErrorCallback<TContext> | undefined;
595
+ 539?: ErrorCallback<TContext> | undefined;
596
+ 540?: ErrorCallback<TContext> | undefined;
597
+ 541?: ErrorCallback<TContext> | undefined;
598
+ 542?: ErrorCallback<TContext> | undefined;
599
+ 543?: ErrorCallback<TContext> | undefined;
600
+ 544?: ErrorCallback<TContext> | undefined;
601
+ 545?: ErrorCallback<TContext> | undefined;
602
+ 546?: ErrorCallback<TContext> | undefined;
603
+ 547?: ErrorCallback<TContext> | undefined;
604
+ 548?: ErrorCallback<TContext> | undefined;
605
+ 549?: ErrorCallback<TContext> | undefined;
606
+ 550?: ErrorCallback<TContext> | undefined;
607
+ 551?: ErrorCallback<TContext> | undefined;
608
+ 552?: ErrorCallback<TContext> | undefined;
609
+ 553?: ErrorCallback<TContext> | undefined;
610
+ 554?: ErrorCallback<TContext> | undefined;
611
+ 555?: ErrorCallback<TContext> | undefined;
612
+ 556?: ErrorCallback<TContext> | undefined;
613
+ 557?: ErrorCallback<TContext> | undefined;
614
+ 558?: ErrorCallback<TContext> | undefined;
615
+ 559?: ErrorCallback<TContext> | undefined;
616
+ 560?: ErrorCallback<TContext> | undefined;
617
+ 561?: ErrorCallback<TContext> | undefined;
618
+ 562?: ErrorCallback<TContext> | undefined;
619
+ 563?: ErrorCallback<TContext> | undefined;
620
+ 564?: ErrorCallback<TContext> | undefined;
621
+ 565?: ErrorCallback<TContext> | undefined;
622
+ 566?: ErrorCallback<TContext> | undefined;
623
+ 567?: ErrorCallback<TContext> | undefined;
624
+ 568?: ErrorCallback<TContext> | undefined;
625
+ 569?: ErrorCallback<TContext> | undefined;
626
+ 570?: ErrorCallback<TContext> | undefined;
627
+ 571?: ErrorCallback<TContext> | undefined;
628
+ 572?: ErrorCallback<TContext> | undefined;
629
+ 573?: ErrorCallback<TContext> | undefined;
630
+ 574?: ErrorCallback<TContext> | undefined;
631
+ 575?: ErrorCallback<TContext> | undefined;
632
+ 576?: ErrorCallback<TContext> | undefined;
633
+ 577?: ErrorCallback<TContext> | undefined;
634
+ 578?: ErrorCallback<TContext> | undefined;
635
+ 579?: ErrorCallback<TContext> | undefined;
636
+ 580?: ErrorCallback<TContext> | undefined;
637
+ 581?: ErrorCallback<TContext> | undefined;
638
+ 582?: ErrorCallback<TContext> | undefined;
639
+ 583?: ErrorCallback<TContext> | undefined;
640
+ 584?: ErrorCallback<TContext> | undefined;
641
+ 585?: ErrorCallback<TContext> | undefined;
642
+ 586?: ErrorCallback<TContext> | undefined;
643
+ 587?: ErrorCallback<TContext> | undefined;
644
+ 588?: ErrorCallback<TContext> | undefined;
645
+ 589?: ErrorCallback<TContext> | undefined;
646
+ 590?: ErrorCallback<TContext> | undefined;
647
+ 591?: ErrorCallback<TContext> | undefined;
648
+ 592?: ErrorCallback<TContext> | undefined;
649
+ 593?: ErrorCallback<TContext> | undefined;
650
+ 594?: ErrorCallback<TContext> | undefined;
651
+ 595?: ErrorCallback<TContext> | undefined;
652
+ 596?: ErrorCallback<TContext> | undefined;
653
+ 597?: ErrorCallback<TContext> | undefined;
654
+ 598?: ErrorCallback<TContext> | undefined;
655
+ 599?: ErrorCallback<TContext> | undefined;
656
656
 
657
657
  // #endregion
658
658
  } & {
@@ -664,7 +664,7 @@ declare namespace JQuery {
664
664
 
665
665
  // Writable properties on XMLHttpRequest
666
666
  interface XHRFields extends Partial<Pick<XMLHttpRequest, 'onreadystatechange' | 'responseType' | 'timeout' | 'withCredentials'>> {
667
- msCaching?: string;
667
+ msCaching?: string | undefined;
668
668
  }
669
669
  }
670
670
 
@@ -718,7 +718,7 @@ declare namespace JQuery {
718
718
  * @see \`{@link https://api.jquery.com/jQuery.Callbacks/ }\`
719
719
  * @since 1.7
720
720
  */
721
- // tslint:disable-next-line:ban-types callable-types no-unnecessary-generics
721
+ // tslint:disable-next-line:ban-types no-unnecessary-generics
722
722
  <T extends Function>(flags?: string): Callbacks<T>;
723
723
  }
724
724
 
@@ -3496,11 +3496,11 @@ $.get( "test.php" )
3496
3496
  /**
3497
3497
  * A string or number determining how long the animation will run.
3498
3498
  */
3499
- duration?: Duration;
3499
+ duration?: Duration | undefined;
3500
3500
  /**
3501
3501
  * A string indicating which easing function to use for the transition.
3502
3502
  */
3503
- easing?: string;
3503
+ easing?: string | undefined;
3504
3504
  /**
3505
3505
  * A function to be called when the animation on an element fails to complete (its Promise object is rejected).
3506
3506
  */
@@ -3512,11 +3512,11 @@ $.get( "test.php" )
3512
3512
  /**
3513
3513
  * A Boolean indicating whether to place the animation in the effects queue. If false, the animation will begin immediately. As of jQuery 1.7, the queue option can also accept a string, in which case the animation is added to the queue represented by that string. When a custom queue name is used the animation does not automatically start; you must call .dequeue("queuename") to start it.
3514
3514
  */
3515
- queue?: boolean | string;
3515
+ queue?: boolean | string | undefined;
3516
3516
  /**
3517
3517
  * An object containing one or more of the CSS properties defined by the properties argument and their corresponding easing functions.
3518
3518
  */
3519
- specialEasing?: PlainObject<string>;
3519
+ specialEasing?: PlainObject<string> | undefined;
3520
3520
  /**
3521
3521
  * A function to call when the animation on an element begins.
3522
3522
  */
@@ -3712,7 +3712,7 @@ jQuery.Tween.propHooks[ property ] = {
3712
3712
  */
3713
3713
  options: EffectsOptions<TElement>;
3714
3714
  // Undocumented. Is this intended to be public?
3715
- pos?: number;
3715
+ pos?: number | undefined;
3716
3716
  /**
3717
3717
  * The property being animated
3718
3718
  * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#tweens }\`
@@ -4696,8 +4696,8 @@ $( "button" ).click(function( event ) {
4696
4696
  </html>
4697
4697
  ```
4698
4698
  */
4699
- namespace?: string;
4700
- originalEvent?: _Event;
4699
+ namespace?: string | undefined;
4700
+ originalEvent?: _Event | undefined;
4701
4701
  /**
4702
4702
  * The last value returned by an event handler that was triggered by this event, unless the value was undefined.
4703
4703
  * @see \`{@link https://api.jquery.com/event.result/ }\`
@@ -4970,7 +4970,7 @@ $( "#checkMetaKey" ).click(function( event ) {
4970
4970
  metaKey: undefined;
4971
4971
  shiftKey: undefined;
4972
4972
 
4973
- originalEvent?: _Event;
4973
+ originalEvent?: _Event | undefined;
4974
4974
  }
4975
4975
 
4976
4976
  interface ChangeEvent<
@@ -5040,7 +5040,7 @@ $( "#checkMetaKey" ).click(function( event ) {
5040
5040
  detail: number;
5041
5041
  view: Window;
5042
5042
 
5043
- originalEvent?: _UIEvent;
5043
+ originalEvent?: _UIEvent | undefined;
5044
5044
  }
5045
5045
 
5046
5046
  // region MouseEvent
@@ -5063,7 +5063,7 @@ $( "a" ).mouseout(function( event ) {
5063
5063
  });
5064
5064
  ```
5065
5065
  */
5066
- relatedTarget?: EventTarget | null;
5066
+ relatedTarget?: EventTarget | null | undefined;
5067
5067
 
5068
5068
  // MouseEvent
5069
5069
 
@@ -5270,7 +5270,7 @@ $( "#checkMetaKey" ).click(function( event ) {
5270
5270
  metaKey: boolean;
5271
5271
  shiftKey: boolean;
5272
5272
 
5273
- originalEvent?: _MouseEvent;
5273
+ originalEvent?: _MouseEvent | undefined;
5274
5274
  }
5275
5275
 
5276
5276
  interface ClickEvent<
@@ -5290,7 +5290,7 @@ $( "#checkMetaKey" ).click(function( event ) {
5290
5290
  });
5291
5291
  ```
5292
5292
  */
5293
- relatedTarget?: null;
5293
+ relatedTarget?: null | undefined;
5294
5294
 
5295
5295
  type: 'click';
5296
5296
  }
@@ -5312,7 +5312,7 @@ $( "#checkMetaKey" ).click(function( event ) {
5312
5312
  });
5313
5313
  ```
5314
5314
  */
5315
- relatedTarget?: null;
5315
+ relatedTarget?: null | undefined;
5316
5316
 
5317
5317
  type: 'contextmenu';
5318
5318
  }
@@ -5334,7 +5334,7 @@ $( "#checkMetaKey" ).click(function( event ) {
5334
5334
  });
5335
5335
  ```
5336
5336
  */
5337
- relatedTarget?: null;
5337
+ relatedTarget?: null | undefined;
5338
5338
 
5339
5339
  type: 'dblclick';
5340
5340
  }
@@ -5356,7 +5356,7 @@ $( "#checkMetaKey" ).click(function( event ) {
5356
5356
  });
5357
5357
  ```
5358
5358
  */
5359
- relatedTarget?: null;
5359
+ relatedTarget?: null | undefined;
5360
5360
 
5361
5361
  type: 'mousedown';
5362
5362
  }
@@ -5398,7 +5398,7 @@ $( "#checkMetaKey" ).click(function( event ) {
5398
5398
  });
5399
5399
  ```
5400
5400
  */
5401
- relatedTarget?: null;
5401
+ relatedTarget?: null | undefined;
5402
5402
 
5403
5403
  type: 'mousemove';
5404
5404
  }
@@ -5438,7 +5438,7 @@ $( "#checkMetaKey" ).click(function( event ) {
5438
5438
  });
5439
5439
  ```
5440
5440
  */
5441
- relatedTarget?: null;
5441
+ relatedTarget?: null | undefined;
5442
5442
 
5443
5443
  type: 'mouseup';
5444
5444
  }
@@ -5452,7 +5452,7 @@ $( "#checkMetaKey" ).click(function( event ) {
5452
5452
  TCurrentTarget = any,
5453
5453
  TTarget = any
5454
5454
  > extends UIEventBase<TDelegateTarget, TData, TCurrentTarget, TTarget> {
5455
- originalEvent?: _DragEvent;
5455
+ originalEvent?: _DragEvent | undefined;
5456
5456
  }
5457
5457
 
5458
5458
  interface DragEvent<
@@ -5759,7 +5759,7 @@ $( "#checkMetaKey" ).click(function( event ) {
5759
5759
  metaKey: boolean;
5760
5760
  shiftKey: boolean;
5761
5761
 
5762
- originalEvent?: _KeyboardEvent;
5762
+ originalEvent?: _KeyboardEvent | undefined;
5763
5763
  }
5764
5764
 
5765
5765
  interface KeyDownEvent<
@@ -6018,7 +6018,7 @@ $( "#checkMetaKey" ).click(function( event ) {
6018
6018
  metaKey: boolean;
6019
6019
  shiftKey: boolean;
6020
6020
 
6021
- originalEvent?: _TouchEvent;
6021
+ originalEvent?: _TouchEvent | undefined;
6022
6022
  }
6023
6023
 
6024
6024
  interface TouchCancelEvent<
@@ -6079,7 +6079,7 @@ $( "a" ).mouseout(function( event ) {
6079
6079
  });
6080
6080
  ```
6081
6081
  */
6082
- relatedTarget?: EventTarget | null;
6082
+ relatedTarget?: EventTarget | null | undefined;
6083
6083
 
6084
6084
  // MouseEvent
6085
6085
 
@@ -6286,7 +6286,7 @@ $( "#checkMetaKey" ).click(function( event ) {
6286
6286
  metaKey: undefined;
6287
6287
  shiftKey: undefined;
6288
6288
 
6289
- originalEvent?: _FocusEvent;
6289
+ originalEvent?: _FocusEvent | undefined;
6290
6290
  }
6291
6291
 
6292
6292
  interface BlurEvent<