// tslint:disable:jsdoc-format // tslint:disable:max-line-length // tslint:disable:no-irregular-whitespace declare namespace JQuery { type TypeOrArray = T | T[]; type Node = Element | Text | Comment | Document | DocumentFragment; /** * A string is designated htmlString in jQuery documentation when it is used to represent one or more DOM elements, typically to be created and inserted in the document. When passed as an argument of the jQuery() function, the string is identified as HTML if it starts with ) and is parsed as such until the final > character. Prior to jQuery 1.9, a string was considered to be HTML if it contained anywhere within the string. */ type htmlString = string; /** * A selector is used in jQuery to select DOM elements from a DOM document. That document is, in most cases, the DOM document present in all browsers, but can also be an XML document received via Ajax. */ type Selector = string; /** * The PlainObject type is a JavaScript object containing zero or more key-value pairs. The plain object is, in other words, an Object object. It is designated "plain" in jQuery documentation to distinguish it from other kinds of JavaScript objects: for example, null, user-defined arrays, and host objects such as document, all of which have a typeof value of "object." * * **Note**: The type declaration of PlainObject is imprecise. It includes host objects and user-defined arrays which do not match jQuery's definition. */ interface PlainObject { [key: string]: T; } interface Selectors extends Sizzle.Selectors { /** * @deprecated ​ Deprecated since 3.0. Use \`{@link Selectors#pseudos }\`. * * **Cause**: The standard way to add new custom selectors through jQuery is `jQuery.expr.pseudos`. These two other aliases are deprecated, although they still work as of jQuery 3.0. * * **Solution**: Rename any of the older usage to `jQuery.expr.pseudos`. The functionality is identical. */ ':': Sizzle.Selectors.PseudoFunctions; /** * @deprecated ​ Deprecated since 3.0. Use \`{@link Selectors#pseudos }\`. * * **Cause**: The standard way to add new custom selectors through jQuery is `jQuery.expr.pseudos`. These two other aliases are deprecated, although they still work as of jQuery 3.0. * * **Solution**: Rename any of the older usage to `jQuery.expr.pseudos`. The functionality is identical. */ filter: Sizzle.Selectors.FilterFunctions; } // region Ajax // #region Ajax interface AjaxSettings extends Ajax.AjaxSettingsBase { /** * A string containing the URL to which the request is sent. */ url?: string | undefined; } interface UrlAjaxSettings extends Ajax.AjaxSettingsBase { /** * A string containing the URL to which the request is sent. */ url: string; } namespace Ajax { type SuccessTextStatus = 'success' | 'notmodified' | 'nocontent'; type ErrorTextStatus = 'timeout' | 'error' | 'abort' | 'parsererror'; type TextStatus = SuccessTextStatus | ErrorTextStatus; type SuccessCallback = (this: TContext, data: any, textStatus: SuccessTextStatus, jqXHR: jqXHR) => void; type ErrorCallback = (this: TContext, jqXHR: jqXHR, textStatus: ErrorTextStatus, errorThrown: string) => void; type CompleteCallback = (this: TContext, jqXHR: jqXHR, textStatus: TextStatus) => void; /** * @see \`{@link https://api.jquery.com/jquery.ajax/#jQuery-ajax-settings }\` */ interface AjaxSettingsBase { /** * 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. */ accepts?: PlainObject | undefined; /** * 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(). */ async?: boolean | undefined; /** * 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. */ beforeSend?(this: TContext, jqXHR: jqXHR, settings: this): false | void; /** * 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. */ cache?: boolean | undefined; /** * 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. */ complete?: TypeOrArray> | undefined; /** * An object of string/regular-expression pairs that determine how jQuery will parse the response, given its content type. */ contents?: PlainObject | undefined; /** * 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. */ contentType?: string | false | undefined; /** * 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). */ context?: TContext | undefined; /** * An object containing dataType-to-dataType converters. Each converter's value is a function that returns the transformed value of the response. */ converters?: PlainObject<((value: any) => any) | true> | undefined; /** * 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. */ crossDomain?: boolean | undefined; /** * 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). */ data?: PlainObject | string | undefined; /** * 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. */ dataFilter?(data: string, type: string): any; /** * The type of data that you're expecting back from the server. If none is specified, jQuery will try to infer it based on the MIME type of the response (an XML MIME type will yield XML, in 1.4 JSON will yield a JavaScript object, in 1.4 script will execute the script, and anything else will be returned as a string). The available types (and the result passed as the first argument to your success callback) are: * * "xml": Returns a XML document that can be processed via jQuery. * * "html": Returns HTML as plain text; included script tags are evaluated when inserted in the DOM. * * "script": Evaluates the response as JavaScript and returns it as plain text. Disables caching by appending a query string parameter, _=[TIMESTAMP], to the URL unless the cache option is set to true. Note: This will turn POSTs into GETs for remote-domain requests. * * "json": Evaluates the response as JSON and returns a JavaScript object. Cross-domain "json" requests are converted to "jsonp" unless the request includes jsonp: false in its request options. The JSON data is parsed in a strict manner; any malformed JSON is rejected and a parse error is thrown. As of jQuery 1.9, an empty response is also rejected; the server should return a response of null or {} instead. (See json.org for more information on proper JSON formatting.) * * "jsonp": Loads in a JSON block using JSONP. Adds an extra "?callback=?" to the end of your URL to specify the callback. Disables caching by appending a query string parameter, "_=[TIMESTAMP]", to the URL unless the cache option is set to true. * * "text": A plain text string. * * 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. */ dataType?: 'xml' | 'html' | 'script' | 'json' | 'jsonp' | 'text' | string | undefined; /** * The MIME type of content that is used to submit the form to the server. Possible values are: * * "application/x-www-form-urlencoded": The initial default type. * * "multipart/form-data": The type that allows file element(s) to upload file data. * * "text/plain": A type introduced in HTML5. */ enctype?: 'application/x-www-form-urlencoded' | 'multipart/form-data' | 'text/plain' | undefined; /** * 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. */ error?: TypeOrArray> | undefined; /** * 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. */ global?: boolean | undefined; /** * 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. */ headers?: PlainObject | undefined; /** * 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. */ ifModified?: boolean | undefined; /** * 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. */ isLocal?: boolean | undefined; /** * 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. */ jsonp?: string | false | undefined; /** * 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. */ jsonpCallback?: string | ((this: TContext) => string) | undefined; /** * The HTTP method to use for the request (e.g. "POST", "GET", "PUT"). */ method?: string | undefined; /** * A mime type to override the XHR mime type. */ mimeType?: string | undefined; /** * A password to be used with XMLHttpRequest in response to an HTTP access authentication request. */ password?: string | undefined; /** * 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. */ processData?: boolean | undefined; /** * 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. */ scriptCharset?: string | undefined; /** * An object of numeric HTTP codes and functions to be called when the response has the corresponding code. * * 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. */ statusCode?: StatusCodeCallbacks | undefined; /** * 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. */ success?: TypeOrArray> | undefined; /** * 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. */ timeout?: number | undefined; /** * Set this to true if you wish to use the traditional style of param serialization. */ traditional?: boolean | undefined; /** * An alias for method. You should use type if you're using versions of jQuery prior to 1.9.0. */ type?: string | undefined; /** * A username to be used with XMLHttpRequest in response to an HTTP access authentication request. */ username?: string | undefined; // ActiveXObject requires "lib": ["scripthost"] which consumers would also require /** * 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. */ xhr?(): XMLHttpRequest; /** * An object of fieldName-fieldValue pairs to set on the native XHR object. * * 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. */ xhrFields?: XHRFields | undefined; } // region StatusCodeCallbacks // #region StatusCodeCallbacks type StatusCodeCallbacks = { // region Success Status Codes // #region Success Status Codes // jQuery treats 2xx and 304 status codes as a success 200?: SuccessCallback | undefined; 201?: SuccessCallback | undefined; 202?: SuccessCallback | undefined; 203?: SuccessCallback | undefined; 204?: SuccessCallback | undefined; 205?: SuccessCallback | undefined; 206?: SuccessCallback | undefined; 207?: SuccessCallback | undefined; 208?: SuccessCallback | undefined; 209?: SuccessCallback | undefined; 210?: SuccessCallback | undefined; 211?: SuccessCallback | undefined; 212?: SuccessCallback | undefined; 213?: SuccessCallback | undefined; 214?: SuccessCallback | undefined; 215?: SuccessCallback | undefined; 216?: SuccessCallback | undefined; 217?: SuccessCallback | undefined; 218?: SuccessCallback | undefined; 219?: SuccessCallback | undefined; 220?: SuccessCallback | undefined; 221?: SuccessCallback | undefined; 222?: SuccessCallback | undefined; 223?: SuccessCallback | undefined; 224?: SuccessCallback | undefined; 225?: SuccessCallback | undefined; 226?: SuccessCallback | undefined; 227?: SuccessCallback | undefined; 228?: SuccessCallback | undefined; 229?: SuccessCallback | undefined; 230?: SuccessCallback | undefined; 231?: SuccessCallback | undefined; 232?: SuccessCallback | undefined; 233?: SuccessCallback | undefined; 234?: SuccessCallback | undefined; 235?: SuccessCallback | undefined; 236?: SuccessCallback | undefined; 237?: SuccessCallback | undefined; 238?: SuccessCallback | undefined; 239?: SuccessCallback | undefined; 240?: SuccessCallback | undefined; 241?: SuccessCallback | undefined; 242?: SuccessCallback | undefined; 243?: SuccessCallback | undefined; 244?: SuccessCallback | undefined; 245?: SuccessCallback | undefined; 246?: SuccessCallback | undefined; 247?: SuccessCallback | undefined; 248?: SuccessCallback | undefined; 249?: SuccessCallback | undefined; 250?: SuccessCallback | undefined; 251?: SuccessCallback | undefined; 252?: SuccessCallback | undefined; 253?: SuccessCallback | undefined; 254?: SuccessCallback | undefined; 255?: SuccessCallback | undefined; 256?: SuccessCallback | undefined; 257?: SuccessCallback | undefined; 258?: SuccessCallback | undefined; 259?: SuccessCallback | undefined; 260?: SuccessCallback | undefined; 261?: SuccessCallback | undefined; 262?: SuccessCallback | undefined; 263?: SuccessCallback | undefined; 264?: SuccessCallback | undefined; 265?: SuccessCallback | undefined; 266?: SuccessCallback | undefined; 267?: SuccessCallback | undefined; 268?: SuccessCallback | undefined; 269?: SuccessCallback | undefined; 270?: SuccessCallback | undefined; 271?: SuccessCallback | undefined; 272?: SuccessCallback | undefined; 273?: SuccessCallback | undefined; 274?: SuccessCallback | undefined; 275?: SuccessCallback | undefined; 276?: SuccessCallback | undefined; 277?: SuccessCallback | undefined; 278?: SuccessCallback | undefined; 279?: SuccessCallback | undefined; 280?: SuccessCallback | undefined; 281?: SuccessCallback | undefined; 282?: SuccessCallback | undefined; 283?: SuccessCallback | undefined; 284?: SuccessCallback | undefined; 285?: SuccessCallback | undefined; 286?: SuccessCallback | undefined; 287?: SuccessCallback | undefined; 288?: SuccessCallback | undefined; 289?: SuccessCallback | undefined; 290?: SuccessCallback | undefined; 291?: SuccessCallback | undefined; 292?: SuccessCallback | undefined; 293?: SuccessCallback | undefined; 294?: SuccessCallback | undefined; 295?: SuccessCallback | undefined; 296?: SuccessCallback | undefined; 297?: SuccessCallback | undefined; 298?: SuccessCallback | undefined; 299?: SuccessCallback | undefined; 304?: SuccessCallback | undefined; // #endregion // region Error Status Codes // #region Error Status Codes 300?: ErrorCallback | undefined; 301?: ErrorCallback | undefined; 302?: ErrorCallback | undefined; 303?: ErrorCallback | undefined; 305?: ErrorCallback | undefined; 306?: ErrorCallback | undefined; 307?: ErrorCallback | undefined; 308?: ErrorCallback | undefined; 309?: ErrorCallback | undefined; 310?: ErrorCallback | undefined; 311?: ErrorCallback | undefined; 312?: ErrorCallback | undefined; 313?: ErrorCallback | undefined; 314?: ErrorCallback | undefined; 315?: ErrorCallback | undefined; 316?: ErrorCallback | undefined; 317?: ErrorCallback | undefined; 318?: ErrorCallback | undefined; 319?: ErrorCallback | undefined; 320?: ErrorCallback | undefined; 321?: ErrorCallback | undefined; 322?: ErrorCallback | undefined; 323?: ErrorCallback | undefined; 324?: ErrorCallback | undefined; 325?: ErrorCallback | undefined; 326?: ErrorCallback | undefined; 327?: ErrorCallback | undefined; 328?: ErrorCallback | undefined; 329?: ErrorCallback | undefined; 330?: ErrorCallback | undefined; 331?: ErrorCallback | undefined; 332?: ErrorCallback | undefined; 333?: ErrorCallback | undefined; 334?: ErrorCallback | undefined; 335?: ErrorCallback | undefined; 336?: ErrorCallback | undefined; 337?: ErrorCallback | undefined; 338?: ErrorCallback | undefined; 339?: ErrorCallback | undefined; 340?: ErrorCallback | undefined; 341?: ErrorCallback | undefined; 342?: ErrorCallback | undefined; 343?: ErrorCallback | undefined; 344?: ErrorCallback | undefined; 345?: ErrorCallback | undefined; 346?: ErrorCallback | undefined; 347?: ErrorCallback | undefined; 348?: ErrorCallback | undefined; 349?: ErrorCallback | undefined; 350?: ErrorCallback | undefined; 351?: ErrorCallback | undefined; 352?: ErrorCallback | undefined; 353?: ErrorCallback | undefined; 354?: ErrorCallback | undefined; 355?: ErrorCallback | undefined; 356?: ErrorCallback | undefined; 357?: ErrorCallback | undefined; 358?: ErrorCallback | undefined; 359?: ErrorCallback | undefined; 360?: ErrorCallback | undefined; 361?: ErrorCallback | undefined; 362?: ErrorCallback | undefined; 363?: ErrorCallback | undefined; 364?: ErrorCallback | undefined; 365?: ErrorCallback | undefined; 366?: ErrorCallback | undefined; 367?: ErrorCallback | undefined; 368?: ErrorCallback | undefined; 369?: ErrorCallback | undefined; 370?: ErrorCallback | undefined; 371?: ErrorCallback | undefined; 372?: ErrorCallback | undefined; 373?: ErrorCallback | undefined; 374?: ErrorCallback | undefined; 375?: ErrorCallback | undefined; 376?: ErrorCallback | undefined; 377?: ErrorCallback | undefined; 378?: ErrorCallback | undefined; 379?: ErrorCallback | undefined; 380?: ErrorCallback | undefined; 381?: ErrorCallback | undefined; 382?: ErrorCallback | undefined; 383?: ErrorCallback | undefined; 384?: ErrorCallback | undefined; 385?: ErrorCallback | undefined; 386?: ErrorCallback | undefined; 387?: ErrorCallback | undefined; 388?: ErrorCallback | undefined; 389?: ErrorCallback | undefined; 390?: ErrorCallback | undefined; 391?: ErrorCallback | undefined; 392?: ErrorCallback | undefined; 393?: ErrorCallback | undefined; 394?: ErrorCallback | undefined; 395?: ErrorCallback | undefined; 396?: ErrorCallback | undefined; 397?: ErrorCallback | undefined; 398?: ErrorCallback | undefined; 399?: ErrorCallback | undefined; 400?: ErrorCallback | undefined; 401?: ErrorCallback | undefined; 402?: ErrorCallback | undefined; 403?: ErrorCallback | undefined; 404?: ErrorCallback | undefined; 405?: ErrorCallback | undefined; 406?: ErrorCallback | undefined; 407?: ErrorCallback | undefined; 408?: ErrorCallback | undefined; 409?: ErrorCallback | undefined; 410?: ErrorCallback | undefined; 411?: ErrorCallback | undefined; 412?: ErrorCallback | undefined; 413?: ErrorCallback | undefined; 414?: ErrorCallback | undefined; 415?: ErrorCallback | undefined; 416?: ErrorCallback | undefined; 417?: ErrorCallback | undefined; 418?: ErrorCallback | undefined; 419?: ErrorCallback | undefined; 420?: ErrorCallback | undefined; 421?: ErrorCallback | undefined; 422?: ErrorCallback | undefined; 423?: ErrorCallback | undefined; 424?: ErrorCallback | undefined; 425?: ErrorCallback | undefined; 426?: ErrorCallback | undefined; 427?: ErrorCallback | undefined; 428?: ErrorCallback | undefined; 429?: ErrorCallback | undefined; 430?: ErrorCallback | undefined; 431?: ErrorCallback | undefined; 432?: ErrorCallback | undefined; 433?: ErrorCallback | undefined; 434?: ErrorCallback | undefined; 435?: ErrorCallback | undefined; 436?: ErrorCallback | undefined; 437?: ErrorCallback | undefined; 438?: ErrorCallback | undefined; 439?: ErrorCallback | undefined; 440?: ErrorCallback | undefined; 441?: ErrorCallback | undefined; 442?: ErrorCallback | undefined; 443?: ErrorCallback | undefined; 444?: ErrorCallback | undefined; 445?: ErrorCallback | undefined; 446?: ErrorCallback | undefined; 447?: ErrorCallback | undefined; 448?: ErrorCallback | undefined; 449?: ErrorCallback | undefined; 450?: ErrorCallback | undefined; 451?: ErrorCallback | undefined; 452?: ErrorCallback | undefined; 453?: ErrorCallback | undefined; 454?: ErrorCallback | undefined; 455?: ErrorCallback | undefined; 456?: ErrorCallback | undefined; 457?: ErrorCallback | undefined; 458?: ErrorCallback | undefined; 459?: ErrorCallback | undefined; 460?: ErrorCallback | undefined; 461?: ErrorCallback | undefined; 462?: ErrorCallback | undefined; 463?: ErrorCallback | undefined; 464?: ErrorCallback | undefined; 465?: ErrorCallback | undefined; 466?: ErrorCallback | undefined; 467?: ErrorCallback | undefined; 468?: ErrorCallback | undefined; 469?: ErrorCallback | undefined; 470?: ErrorCallback | undefined; 471?: ErrorCallback | undefined; 472?: ErrorCallback | undefined; 473?: ErrorCallback | undefined; 474?: ErrorCallback | undefined; 475?: ErrorCallback | undefined; 476?: ErrorCallback | undefined; 477?: ErrorCallback | undefined; 478?: ErrorCallback | undefined; 479?: ErrorCallback | undefined; 480?: ErrorCallback | undefined; 481?: ErrorCallback | undefined; 482?: ErrorCallback | undefined; 483?: ErrorCallback | undefined; 484?: ErrorCallback | undefined; 485?: ErrorCallback | undefined; 486?: ErrorCallback | undefined; 487?: ErrorCallback | undefined; 488?: ErrorCallback | undefined; 489?: ErrorCallback | undefined; 490?: ErrorCallback | undefined; 491?: ErrorCallback | undefined; 492?: ErrorCallback | undefined; 493?: ErrorCallback | undefined; 494?: ErrorCallback | undefined; 495?: ErrorCallback | undefined; 496?: ErrorCallback | undefined; 497?: ErrorCallback | undefined; 498?: ErrorCallback | undefined; 499?: ErrorCallback | undefined; 500?: ErrorCallback | undefined; 501?: ErrorCallback | undefined; 502?: ErrorCallback | undefined; 503?: ErrorCallback | undefined; 504?: ErrorCallback | undefined; 505?: ErrorCallback | undefined; 506?: ErrorCallback | undefined; 507?: ErrorCallback | undefined; 508?: ErrorCallback | undefined; 509?: ErrorCallback | undefined; 510?: ErrorCallback | undefined; 511?: ErrorCallback | undefined; 512?: ErrorCallback | undefined; 513?: ErrorCallback | undefined; 514?: ErrorCallback | undefined; 515?: ErrorCallback | undefined; 516?: ErrorCallback | undefined; 517?: ErrorCallback | undefined; 518?: ErrorCallback | undefined; 519?: ErrorCallback | undefined; 520?: ErrorCallback | undefined; 521?: ErrorCallback | undefined; 522?: ErrorCallback | undefined; 523?: ErrorCallback | undefined; 524?: ErrorCallback | undefined; 525?: ErrorCallback | undefined; 526?: ErrorCallback | undefined; 527?: ErrorCallback | undefined; 528?: ErrorCallback | undefined; 529?: ErrorCallback | undefined; 530?: ErrorCallback | undefined; 531?: ErrorCallback | undefined; 532?: ErrorCallback | undefined; 533?: ErrorCallback | undefined; 534?: ErrorCallback | undefined; 535?: ErrorCallback | undefined; 536?: ErrorCallback | undefined; 537?: ErrorCallback | undefined; 538?: ErrorCallback | undefined; 539?: ErrorCallback | undefined; 540?: ErrorCallback | undefined; 541?: ErrorCallback | undefined; 542?: ErrorCallback | undefined; 543?: ErrorCallback | undefined; 544?: ErrorCallback | undefined; 545?: ErrorCallback | undefined; 546?: ErrorCallback | undefined; 547?: ErrorCallback | undefined; 548?: ErrorCallback | undefined; 549?: ErrorCallback | undefined; 550?: ErrorCallback | undefined; 551?: ErrorCallback | undefined; 552?: ErrorCallback | undefined; 553?: ErrorCallback | undefined; 554?: ErrorCallback | undefined; 555?: ErrorCallback | undefined; 556?: ErrorCallback | undefined; 557?: ErrorCallback | undefined; 558?: ErrorCallback | undefined; 559?: ErrorCallback | undefined; 560?: ErrorCallback | undefined; 561?: ErrorCallback | undefined; 562?: ErrorCallback | undefined; 563?: ErrorCallback | undefined; 564?: ErrorCallback | undefined; 565?: ErrorCallback | undefined; 566?: ErrorCallback | undefined; 567?: ErrorCallback | undefined; 568?: ErrorCallback | undefined; 569?: ErrorCallback | undefined; 570?: ErrorCallback | undefined; 571?: ErrorCallback | undefined; 572?: ErrorCallback | undefined; 573?: ErrorCallback | undefined; 574?: ErrorCallback | undefined; 575?: ErrorCallback | undefined; 576?: ErrorCallback | undefined; 577?: ErrorCallback | undefined; 578?: ErrorCallback | undefined; 579?: ErrorCallback | undefined; 580?: ErrorCallback | undefined; 581?: ErrorCallback | undefined; 582?: ErrorCallback | undefined; 583?: ErrorCallback | undefined; 584?: ErrorCallback | undefined; 585?: ErrorCallback | undefined; 586?: ErrorCallback | undefined; 587?: ErrorCallback | undefined; 588?: ErrorCallback | undefined; 589?: ErrorCallback | undefined; 590?: ErrorCallback | undefined; 591?: ErrorCallback | undefined; 592?: ErrorCallback | undefined; 593?: ErrorCallback | undefined; 594?: ErrorCallback | undefined; 595?: ErrorCallback | undefined; 596?: ErrorCallback | undefined; 597?: ErrorCallback | undefined; 598?: ErrorCallback | undefined; 599?: ErrorCallback | undefined; // #endregion } & { // Status codes not listed require type annotations when defining the callback [index: number]: SuccessCallback | ErrorCallback; }; // #endregion // Writable properties on XMLHttpRequest interface XHRFields extends Partial> { msCaching?: string | undefined; } } interface Transport { send(headers: PlainObject, completeCallback: Transport.SuccessCallback): void; abort(): void; } namespace Transport { type SuccessCallback = (status: number, statusText: Ajax.TextStatus, responses?: PlainObject, headers?: string) => void; } /** * @see \`{@link https://api.jquery.com/jquery.ajax/#jqXHR }\` */ interface jqXHR extends Promise3, never, Ajax.SuccessTextStatus, Ajax.ErrorTextStatus, never, jqXHR, string, never>, Pick, Partial> { responseJSON?: any; abort(statusText?: string): void; /** * Determine the current state of a Deferred object. * @see \`{@link https://api.jquery.com/deferred.state/ }\` * @since 1.7 */ state(): 'pending' | 'resolved' | 'rejected'; statusCode(map: Ajax.StatusCodeCallbacks): void; } namespace jqXHR { interface DoneCallback> extends Deferred.Callback3 { } interface FailCallback extends Deferred.Callback3 { } interface AlwaysCallback> extends Deferred.Callback3 { } } // #endregion // region Callbacks // #region Callbacks interface CallbacksStatic { /** * A multi-purpose callbacks list object that provides a powerful way to manage callback lists. * @param flags An optional list of space-separated flags that change how the callback list behaves. * @see \`{@link https://api.jquery.com/jQuery.Callbacks/ }\` * @since 1.7 */ // tslint:disable-next-line:ban-types no-unnecessary-generics (flags?: string): Callbacks; } // tslint:disable-next-line:ban-types interface Callbacks { /** * Add a callback or a collection of callbacks to a callback list. * @param callback A function, or array of functions, that are to be added to the callback list. * @param callbacks A function, or array of functions, that are to be added to the callback list. * @see \`{@link https://api.jquery.com/callbacks.add/ }\` * @since 1.7 * @example ​ ````Use callbacks.add() to add new callbacks to a callback list: ```javascript // A sample logging function to be added to a callbacks list var foo = function( value ) { console.log( "foo: " + value ); }; ​ // Another function to also be added to the list var bar = function( value ) { console.log( "bar: " + value ); }; ​ var callbacks = $.Callbacks(); ​ // Add the function "foo" to the list callbacks.add( foo ); ​ // Fire the items on the list callbacks.fire( "hello" ); // Outputs: "foo: hello" ​ // Add the function "bar" to the list callbacks.add( bar ); ​ // Fire the items on the list again callbacks.fire( "world" ); ​ // Outputs: // "foo: world" // "bar: world" ``` */ add(callback: TypeOrArray, ...callbacks: Array>): this; /** * Disable a callback list from doing anything more. * @see \`{@link https://api.jquery.com/callbacks.disable/ }\` * @since 1.7 * @example ​ ````Use callbacks.disable() to disable further calls to a callback list: ```javascript // A sample logging function to be added to a callbacks list var foo = function( value ) { console.log( value ); }; ​ var callbacks = $.Callbacks(); ​ // Add the above function to the list callbacks.add( foo ); ​ // Fire the items on the list callbacks.fire( "foo" ); // Outputs: foo ​ // Disable further calls being possible callbacks.disable(); ​ // Attempt to fire with "foobar" as an argument callbacks.fire( "foobar" ); // foobar isn't output ``` */ disable(): this; /** * Determine if the callbacks list has been disabled. * @see \`{@link https://api.jquery.com/callbacks.disabled/ }\` * @since 1.7 * @example ​ ````Use callbacks.disabled() to determine if the callbacks list has been disabled: ```javascript // A sample logging function to be added to a callbacks list var foo = function( value ) { console.log( "foo:" + value ); }; ​ var callbacks = $.Callbacks(); ​ // Add the logging function to the callback list callbacks.add( foo ); ​ // Fire the items on the list, passing an argument callbacks.fire( "hello" ); // Outputs "foo: hello" ​ // Disable the callbacks list callbacks.disable(); ​ // Test the disabled state of the list console.log ( callbacks.disabled() ); // Outputs: true ``` */ disabled(): boolean; /** * Remove all of the callbacks from a list. * @see \`{@link https://api.jquery.com/callbacks.empty/ }\` * @since 1.7 * @example ​ ````Use callbacks.empty() to empty a list of callbacks: ```javascript // A sample logging function to be added to a callbacks list var foo = function( value1, value2 ) { console.log( "foo: " + value1 + "," + value2 ); }; ​ // Another function to also be added to the list var bar = function( value1, value2 ) { console.log( "bar: " + value1 + "," + value2 ); }; ​ var callbacks = $.Callbacks(); ​ // Add the two functions callbacks.add( foo ); callbacks.add( bar ); ​ // Empty the callbacks list callbacks.empty(); ​ // Check to ensure all callbacks have been removed console.log( callbacks.has( foo ) ); // false console.log( callbacks.has( bar ) ); // false ``` */ empty(): this; /** * Call all of the callbacks with the given arguments. * @param args The argument or list of arguments to pass back to the callback list. * @see \`{@link https://api.jquery.com/callbacks.fire/ }\` * @since 1.7 * @example ​ ````Use callbacks.fire() to invoke the callbacks in a list with any arguments that have been passed: ```javascript // A sample logging function to be added to a callbacks list var foo = function( value ) { console.log( "foo:" + value ); }; ​ var callbacks = $.Callbacks(); ​ // Add the function "foo" to the list callbacks.add( foo ); ​ // Fire the items on the list callbacks.fire( "hello" ); // Outputs: "foo: hello" callbacks.fire( "world" ); // Outputs: "foo: world" ​ // Add another function to the list var bar = function( value ){ console.log( "bar:" + value ); }; ​ // Add this function to the list callbacks.add( bar ); ​ // Fire the items on the list again callbacks.fire( "hello again" ); // Outputs: // "foo: hello again" // "bar: hello again" ``` */ fire(...args: any[]): this; /** * Determine if the callbacks have already been called at least once. * @see \`{@link https://api.jquery.com/callbacks.fired/ }\` * @since 1.7 * @example ​ ````Use callbacks.fired() to determine if the callbacks in a list have been called at least once: ```javascript // A sample logging function to be added to a callbacks list var foo = function( value ) { console.log( "foo:" + value ); }; ​ var callbacks = $.Callbacks(); ​ // Add the function "foo" to the list callbacks.add( foo ); ​ // Fire the items on the list callbacks.fire( "hello" ); // Outputs: "foo: hello" callbacks.fire( "world" ); // Outputs: "foo: world" ​ // Test to establish if the callbacks have been called console.log( callbacks.fired() ); ``` */ fired(): boolean; /** * Call all callbacks in a list with the given context and arguments. * @param context A reference to the context in which the callbacks in the list should be fired. * @param args An argument, or array of arguments, to pass to the callbacks in the list. * @see \`{@link https://api.jquery.com/callbacks.fireWith/ }\` * @since 1.7 * @example ​ ````Use callbacks.fireWith() to fire a list of callbacks with a specific context and an array of arguments: ```javascript // A sample logging function to be added to a callbacks list var log = function( value1, value2 ) { console.log( "Received: " + value1 + "," + value2 ); }; ​ var callbacks = $.Callbacks(); ​ // Add the log method to the callbacks list callbacks.add( log ); ​ // Fire the callbacks on the list using the context "window" // and an arguments array ​ callbacks.fireWith( window, [ "foo","bar" ] ); // Outputs: "Received: foo, bar" ``` */ fireWith(context: object, args?: ArrayLike): this; /** * Determine whether or not the list has any callbacks attached. If a callback is provided as an argument, determine whether it is in a list. * @param callback The callback to search for. * @see \`{@link https://api.jquery.com/callbacks.has/ }\` * @since 1.7 * @example ​ ````Use callbacks.has() to check if a callback list contains a specific callback: ```javascript // A sample logging function to be added to a callbacks list var foo = function( value1, value2 ) { console.log( "Received: " + value1 + "," + value2 ); }; ​ // A second function which will not be added to the list var bar = function( value1, value2 ) { console.log( "foobar" ); }; ​ var callbacks = $.Callbacks(); ​ // Add the log method to the callbacks list callbacks.add( foo ); ​ // Determine which callbacks are in the list console.log( callbacks.has( foo ) ); // true console.log( callbacks.has( bar ) ); // false ``` */ has(callback?: T): boolean; /** * Lock a callback list in its current state. * @see \`{@link https://api.jquery.com/callbacks.lock/ }\` * @since 1.7 * @example ​ ````Use callbacks.lock() to lock a callback list to avoid further changes being made to the list state: ```javascript // A sample logging function to be added to a callbacks list var foo = function( value ) { console.log( "foo:" + value ); }; ​ var callbacks = $.Callbacks(); ​ // Add the logging function to the callback list callbacks.add( foo ); ​ // Fire the items on the list, passing an argument callbacks.fire( "hello" ); // Outputs "foo: hello" ​ // Lock the callbacks list callbacks.lock(); ​ // Try firing the items again callbacks.fire( "world" ); ​ // As the list was locked, no items were called, // so "world" isn't logged ``` * @example ​ ````Use callbacks.lock() to lock a callback list with "memory," and then resume using the list: ```html callbacks.lock demo
​ ``` */ lock(): this; /** * Determine if the callbacks list has been locked. * @see \`{@link https://api.jquery.com/callbacks.locked/ }\` * @since 1.7 * @example ​ ````Use callbacks.locked() to determine the lock-state of a callback list: ```javascript // A sample logging function to be added to a callbacks list var foo = function( value ) { console.log( "foo: " + value ); }; ​ var callbacks = $.Callbacks(); ​ // Add the logging function to the callback list callbacks.add( foo ); ​ // Fire the items on the list, passing an argument callbacks.fire( "hello" ); // Outputs "foo: hello" ​ // Lock the callbacks list callbacks.lock(); ​ // Test the lock-state of the list console.log ( callbacks.locked() ); // true ``` */ locked(): boolean; /** * Remove a callback or a collection of callbacks from a callback list. * @param callbacks A function, or array of functions, that are to be removed from the callback list. * @see \`{@link https://api.jquery.com/callbacks.remove/ }\` * @since 1.7 * @example ​ ````Use callbacks.remove() to remove callbacks from a callback list: ```javascript // A sample logging function to be added to a callbacks list var foo = function( value ) { console.log( "foo: " + value ); }; ​ var callbacks = $.Callbacks(); ​ // Add the function "foo" to the list callbacks.add( foo ); ​ // Fire the items on the list callbacks.fire( "hello" ); // Outputs: "foo: hello" ​ // Remove "foo" from the callback list callbacks.remove( foo ); ​ // Fire the items on the list again callbacks.fire( "world" ); ​ // Nothing output as "foo" is no longer in the list ``` */ remove(...callbacks: T[]): this; } // #endregion // region CSS hooks // #region CSS hooks // Workaround for TypeScript 2.3 which does not have support for weak types handling. type CSSHook = Partial<_CSSHook> & ( Pick<_CSSHook, 'get'> | Pick<_CSSHook, 'set'> ); interface _CSSHook { get(elem: TElement, computed: any, extra: any): any; set(elem: TElement, value: any): void; } interface CSSHooks { // Set to HTMLElement to minimize breaks but should probably be Element. [propertyName: string]: CSSHook; } // #endregion // region Deferred // #region Deferred /** * Any object that has a then method. */ interface Thenable extends PromiseLike { } // Type parameter guide // -------------------- // Each type parameter represents a parameter in one of the three possible callbacks. // // The first letter indicates which position the parameter is in. // // T = A = 1st position // U = B = 2nd position // V = C = 3rd position // S = R = rest position // // The second letter indicates which whether it is a [R]esolve, Re[J]ect, or [N]otify value. // // The third letter indicates whether the value is returned in the [D]one filter, [F]ail filter, or [P]rogress filter. /** * This object provides a subset of the methods of the Deferred object (then, done, fail, always, pipe, progress, state and promise) to prevent users from changing the state of the Deferred. * @see \`{@link https://api.jquery.com/Types/#Promise }\` */ interface PromiseBase { /** * Add handlers to be called when the Deferred object is either resolved or rejected. * @param alwaysCallback A function, or array of functions, that is called when the Deferred is resolved or rejected. * @param alwaysCallbacks Optional additional functions, or arrays of functions, that are called when the Deferred is resolved or rejected. * @see \`{@link https://api.jquery.com/deferred.always/ }\` * @since 1.6 * @example ​ ````Since the jQuery.get() method returns a jqXHR object, which is derived from a Deferred object, we can attach a callback for both success and error using the deferred.always() method. ```javascript $.get( "test.php" ).always(function() { alert( "$.get completed with success or error callback arguments" ); }); ``` */ always(alwaysCallback: TypeOrArray>, ...alwaysCallbacks: Array>>): this; /** * Add handlers to be called when the Deferred object is resolved. * @param doneCallback A function, or array of functions, that are called when the Deferred is resolved. * @param doneCallbacks Optional additional functions, or arrays of functions, that are called when the Deferred is resolved. * @see \`{@link https://api.jquery.com/deferred.done/ }\` * @since 1.5 * @example ​ ````Since the jQuery.get method returns a jqXHR object, which is derived from a Deferred object, we can attach a success callback using the .done() method. ```javascript $.get( "test.php" ).done(function() { alert( "$.get succeeded" ); }); ``` * @example ​ ````Resolve a Deferred object when the user clicks a button, triggering a number of callback functions: ```html deferred.done demo

Ready...

​ ``` */ done(doneCallback: TypeOrArray>, ...doneCallbacks: Array>>): this; /** * Add handlers to be called when the Deferred object is rejected. * @param failCallback A function, or array of functions, that are called when the Deferred is rejected. * @param failCallbacks Optional additional functions, or arrays of functions, that are called when the Deferred is rejected. * @see \`{@link https://api.jquery.com/deferred.fail/ }\` * @since 1.5 * @example ​ ````Since the jQuery.get method returns a jqXHR object, which is derived from a Deferred, you can attach a success and failure callback using the deferred.done() and deferred.fail() methods. ```javascript $.get( "test.php" ) .done(function() { alert( "$.get succeeded" ); }) .fail(function() { alert( "$.get failed!" ); }); ``` */ fail(failCallback: TypeOrArray>, ...failCallbacks: Array>>): this; /** * Add handlers to be called when the Deferred object generates progress notifications. * @param progressCallback A function, or array of functions, to be called when the Deferred generates progress notifications. * @param progressCallbacks Optional additional functions, or arrays of functions, to be called when the Deferred generates * progress notifications. * @see \`{@link https://api.jquery.com/deferred.progress/ }\` * @since 1.7 */ progress(progressCallback: TypeOrArray>, ...progressCallbacks: Array>>): this; /** * Return a Deferred's Promise object. * @param target Object onto which the promise methods have to be attached * @see \`{@link https://api.jquery.com/deferred.promise/ }\` * @since 1.5 * @example ​ ````Create a Deferred and set two timer-based functions to either resolve or reject the Deferred after a random interval. Whichever one fires first "wins" and will call one of the callbacks. The second timeout has no effect since the Deferred is already complete (in a resolved or rejected state) from the first timeout action. Also set a timer-based progress notification function, and call a progress handler that adds "working..." to the document body. ```javascript function asyncEvent() { var dfd = jQuery.Deferred(); ​ // Resolve after a random interval setTimeout(function() { dfd.resolve( "hurray" ); }, Math.floor( 400 + Math.random() * 2000 ) ); ​ // Reject after a random interval setTimeout(function() { dfd.reject( "sorry" ); }, Math.floor( 400 + Math.random() * 2000 ) ); ​ // Show a "working..." message every half-second setTimeout(function working() { if ( dfd.state() === "pending" ) { dfd.notify( "working... " ); setTimeout( working, 500 ); } }, 1 ); ​ // Return the Promise so caller can't change the Deferred return dfd.promise(); } ​ // Attach a done, fail, and progress handler for the asyncEvent $.when( asyncEvent() ).then( function( status ) { alert( status + ", things are going well" ); }, function( status ) { alert( status + ", you fail this time" ); }, function( status ) { $( "body" ).append( status ); } ); ``` */ promise(target: TTarget): this & TTarget; /** * Return a Deferred's Promise object. * @see \`{@link https://api.jquery.com/deferred.promise/ }\` * @since 1.5 * @example ​ ````Use the target argument to promote an existing object to a Promise: ```javascript // Existing object var obj = { hello: function( name ) { alert( "Hello " + name ); } }, // Create a Deferred defer = $.Deferred(); ​ // Set object as a promise defer.promise( obj ); ​ // Resolve the deferred defer.resolve( "John" ); ​ // Use the object as a Promise obj.done(function( name ) { obj.hello( name ); // Will alert "Hello John" }).hello( "Karl" ); // Will alert "Hello Karl" ``` */ promise(): this; /** * Determine the current state of a Deferred object. * @see \`{@link https://api.jquery.com/deferred.state/ }\` * @since 1.7 */ state(): 'pending' | 'resolved' | 'rejected'; // region pipe // #region pipe /** * Utility method to filter and/or chain Deferreds. * @param doneFilter An optional function that is called when the Deferred is resolved. * @param failFilter An optional function that is called when the Deferred is rejected. * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. * @see \`{@link https://api.jquery.com/deferred.pipe/ }\` * @since 1.6 * @since 1.7 * @deprecated ​ Deprecated since 1.8. Use \`{@link then }\`. * * **Cause**: The `.pipe()` method on a `jQuery.Deferred` object was deprecated as of jQuery 1.8, when the `.then()` method was changed to perform the same function. * * **Solution**: In most cases it is sufficient to change all occurrences of `.pipe()` to `.then()`. Ensure that you aren't relying on context/state propagation (e.g., using `this`) or synchronous callback invocation, which were dropped from `.then()` for Promises/A+ interoperability as of jQuery 3.0. * @example ​ ````Filter resolve value: ```javascript var defer = $.Deferred(), filtered = defer.pipe(function( value ) { return value * 2; }); ​ defer.resolve( 5 ); filtered.done(function( value ) { alert( "Value is ( 2*5 = ) 10: " + value ); }); ``` * @example ​ ````Filter reject value: ```javascript var defer = $.Deferred(), filtered = defer.pipe( null, function( value ) { return value * 3; }); ​ defer.reject( 6 ); filtered.fail(function( value ) { alert( "Value is ( 3*6 = ) 18: " + value ); }); ``` * @example ​ ````Chain tasks: ```javascript var request = $.ajax( url, { dataType: "json" } ), chained = request.pipe(function( data ) { return $.ajax( url2, { data: { user: data.userId } } ); }); ​ chained.done(function( data ) { // data retrieved from url2 as provided by the first request }); ``` */ pipe( doneFilter: (t: TR, u: UR, v: VR, ...s: SR[]) => PromiseBase | Thenable | ARD, failFilter: (t: TJ, u: UJ, v: VJ, ...s: SJ[]) => PromiseBase | Thenable | AJF, progressFilter: (t: TN, u: UN, v: VN, ...s: SN[]) => PromiseBase | Thenable | ANP): PromiseBase; /** * Utility method to filter and/or chain Deferreds. * @param doneFilter An optional function that is called when the Deferred is resolved. * @param failFilter An optional function that is called when the Deferred is rejected. * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. * @see \`{@link https://api.jquery.com/deferred.pipe/ }\` * @since 1.6 * @since 1.7 * @deprecated ​ Deprecated since 1.8. Use \`{@link then }\`. * * **Cause**: The `.pipe()` method on a `jQuery.Deferred` object was deprecated as of jQuery 1.8, when the `.then()` method was changed to perform the same function. * * **Solution**: In most cases it is sufficient to change all occurrences of `.pipe()` to `.then()`. Ensure that you aren't relying on context/state propagation (e.g., using `this`) or synchronous callback invocation, which were dropped from `.then()` for Promises/A+ interoperability as of jQuery 3.0. * @example ​ ````Filter reject value: ```javascript var defer = $.Deferred(), filtered = defer.pipe( null, function( value ) { return value * 3; }); ​ defer.reject( 6 ); filtered.fail(function( value ) { alert( "Value is ( 3*6 = ) 18: " + value ); }); ``` * @example ​ ````Chain tasks: ```javascript var request = $.ajax( url, { dataType: "json" } ), chained = request.pipe(function( data ) { return $.ajax( url2, { data: { user: data.userId } } ); }); ​ chained.done(function( data ) { // data retrieved from url2 as provided by the first request }); ``` */ pipe( doneFilter: null, failFilter: (t: TJ, u: UJ, v: VJ, ...s: SJ[]) => PromiseBase | Thenable | AJF, progressFilter: (t: TN, u: UN, v: VN, ...s: SN[]) => PromiseBase | Thenable | ANP): PromiseBase; /** * Utility method to filter and/or chain Deferreds. * @param doneFilter An optional function that is called when the Deferred is resolved. * @param failFilter An optional function that is called when the Deferred is rejected. * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. * @see \`{@link https://api.jquery.com/deferred.pipe/ }\` * @since 1.6 * @since 1.7 * @deprecated ​ Deprecated since 1.8. Use \`{@link then }\`. * * **Cause**: The `.pipe()` method on a `jQuery.Deferred` object was deprecated as of jQuery 1.8, when the `.then()` method was changed to perform the same function. * * **Solution**: In most cases it is sufficient to change all occurrences of `.pipe()` to `.then()`. Ensure that you aren't relying on context/state propagation (e.g., using `this`) or synchronous callback invocation, which were dropped from `.then()` for Promises/A+ interoperability as of jQuery 3.0. * @example ​ ````Filter resolve value: ```javascript var defer = $.Deferred(), filtered = defer.pipe(function( value ) { return value * 2; }); ​ defer.resolve( 5 ); filtered.done(function( value ) { alert( "Value is ( 2*5 = ) 10: " + value ); }); ``` * @example ​ ````Chain tasks: ```javascript var request = $.ajax( url, { dataType: "json" } ), chained = request.pipe(function( data ) { return $.ajax( url2, { data: { user: data.userId } } ); }); ​ chained.done(function( data ) { // data retrieved from url2 as provided by the first request }); ``` */ pipe( doneFilter: (t: TR, u: UR, v: VR, ...s: SR[]) => PromiseBase | Thenable | ARD, failFilter: null, progressFilter: (t: TN, u: UN, v: VN, ...s: SN[]) => PromiseBase | Thenable | ANP): PromiseBase; /** * Utility method to filter and/or chain Deferreds. * @param doneFilter An optional function that is called when the Deferred is resolved. * @param failFilter An optional function that is called when the Deferred is rejected. * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. * @see \`{@link https://api.jquery.com/deferred.pipe/ }\` * @since 1.6 * @since 1.7 * @deprecated ​ Deprecated since 1.8. Use \`{@link then }\`. * * **Cause**: The `.pipe()` method on a `jQuery.Deferred` object was deprecated as of jQuery 1.8, when the `.then()` method was changed to perform the same function. * * **Solution**: In most cases it is sufficient to change all occurrences of `.pipe()` to `.then()`. Ensure that you aren't relying on context/state propagation (e.g., using `this`) or synchronous callback invocation, which were dropped from `.then()` for Promises/A+ interoperability as of jQuery 3.0. * @example ​ ````Chain tasks: ```javascript var request = $.ajax( url, { dataType: "json" } ), chained = request.pipe(function( data ) { return $.ajax( url2, { data: { user: data.userId } } ); }); ​ chained.done(function( data ) { // data retrieved from url2 as provided by the first request }); ``` */ pipe( doneFilter: null, failFilter: null, progressFilter?: (t: TN, u: UN, v: VN, ...s: SN[]) => PromiseBase | Thenable | ANP): PromiseBase; /** * Utility method to filter and/or chain Deferreds. * @param doneFilter An optional function that is called when the Deferred is resolved. * @param failFilter An optional function that is called when the Deferred is rejected. * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. * @see \`{@link https://api.jquery.com/deferred.pipe/ }\` * @since 1.6 * @since 1.7 * @deprecated ​ Deprecated since 1.8. Use \`{@link then }\`. * * **Cause**: The `.pipe()` method on a `jQuery.Deferred` object was deprecated as of jQuery 1.8, when the `.then()` method was changed to perform the same function. * * **Solution**: In most cases it is sufficient to change all occurrences of `.pipe()` to `.then()`. Ensure that you aren't relying on context/state propagation (e.g., using `this`) or synchronous callback invocation, which were dropped from `.then()` for Promises/A+ interoperability as of jQuery 3.0. * @example ​ ````Filter resolve value: ```javascript var defer = $.Deferred(), filtered = defer.pipe(function( value ) { return value * 2; }); ​ defer.resolve( 5 ); filtered.done(function( value ) { alert( "Value is ( 2*5 = ) 10: " + value ); }); ``` * @example ​ ````Filter reject value: ```javascript var defer = $.Deferred(), filtered = defer.pipe( null, function( value ) { return value * 3; }); ​ defer.reject( 6 ); filtered.fail(function( value ) { alert( "Value is ( 3*6 = ) 18: " + value ); }); ``` * @example ​ ````Chain tasks: ```javascript var request = $.ajax( url, { dataType: "json" } ), chained = request.pipe(function( data ) { return $.ajax( url2, { data: { user: data.userId } } ); }); ​ chained.done(function( data ) { // data retrieved from url2 as provided by the first request }); ``` */ pipe( doneFilter: (t: TR, u: UR, v: VR, ...s: SR[]) => PromiseBase | Thenable | ARD, failFilter: (t: TJ, u: UJ, v: VJ, ...s: SJ[]) => PromiseBase | Thenable | AJF, progressFilter?: null): PromiseBase; /** * Utility method to filter and/or chain Deferreds. * @param doneFilter An optional function that is called when the Deferred is resolved. * @param failFilter An optional function that is called when the Deferred is rejected. * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. * @see \`{@link https://api.jquery.com/deferred.pipe/ }\` * @since 1.6 * @since 1.7 * @deprecated ​ Deprecated since 1.8. Use \`{@link then }\`. * * **Cause**: The `.pipe()` method on a `jQuery.Deferred` object was deprecated as of jQuery 1.8, when the `.then()` method was changed to perform the same function. * * **Solution**: In most cases it is sufficient to change all occurrences of `.pipe()` to `.then()`. Ensure that you aren't relying on context/state propagation (e.g., using `this`) or synchronous callback invocation, which were dropped from `.then()` for Promises/A+ interoperability as of jQuery 3.0. * @example ​ ````Filter reject value: ```javascript var defer = $.Deferred(), filtered = defer.pipe( null, function( value ) { return value * 3; }); ​ defer.reject( 6 ); filtered.fail(function( value ) { alert( "Value is ( 3*6 = ) 18: " + value ); }); ``` * @example ​ ````Chain tasks: ```javascript var request = $.ajax( url, { dataType: "json" } ), chained = request.pipe(function( data ) { return $.ajax( url2, { data: { user: data.userId } } ); }); ​ chained.done(function( data ) { // data retrieved from url2 as provided by the first request }); ``` */ pipe( doneFilter: null, failFilter: (t: TJ, u: UJ, v: VJ, ...s: SJ[]) => PromiseBase | Thenable | AJF, progressFilter?: null): PromiseBase; /** * Utility method to filter and/or chain Deferreds. * @param doneFilter An optional function that is called when the Deferred is resolved. * @param failFilter An optional function that is called when the Deferred is rejected. * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. * @see \`{@link https://api.jquery.com/deferred.pipe/ }\` * @since 1.6 * @since 1.7 * @deprecated ​ Deprecated since 1.8. Use \`{@link then }\`. * * **Cause**: The `.pipe()` method on a `jQuery.Deferred` object was deprecated as of jQuery 1.8, when the `.then()` method was changed to perform the same function. * * **Solution**: In most cases it is sufficient to change all occurrences of `.pipe()` to `.then()`. Ensure that you aren't relying on context/state propagation (e.g., using `this`) or synchronous callback invocation, which were dropped from `.then()` for Promises/A+ interoperability as of jQuery 3.0. * @example ​ ````Filter resolve value: ```javascript var defer = $.Deferred(), filtered = defer.pipe(function( value ) { return value * 2; }); ​ defer.resolve( 5 ); filtered.done(function( value ) { alert( "Value is ( 2*5 = ) 10: " + value ); }); ``` * @example ​ ````Chain tasks: ```javascript var request = $.ajax( url, { dataType: "json" } ), chained = request.pipe(function( data ) { return $.ajax( url2, { data: { user: data.userId } } ); }); ​ chained.done(function( data ) { // data retrieved from url2 as provided by the first request }); ``` */ pipe( doneFilter: (t: TR, u: UR, v: VR, ...s: SR[]) => PromiseBase | Thenable | ARD, failFilter?: null, progressFilter?: null): PromiseBase; // #endregion // region then // #region then /** * Add handlers to be called when the Deferred object is resolved, rejected, or still in progress. * @param doneFilter An optional function that is called when the Deferred is resolved. * @param failFilter An optional function that is called when the Deferred is rejected. * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. * @see \`{@link https://api.jquery.com/deferred.then/ }\` * @since 1.8 * @example ​ ````Since the jQuery.get method returns a jqXHR object, which is derived from a Deferred object, we can attach handlers using the .then method. ```javascript $.get( "test.php" ).then( function() { alert( "$.get succeeded" ); }, function() { alert( "$.get failed!" ); } ); ``` * @example ​ ````Filter the resolve value: ```html deferred.then demo

​ ``` * @example ​ ````Filter reject value: ```javascript var defer = $.Deferred(), filtered = defer.then( null, function( value ) { return value * 3; }); ​ defer.reject( 6 ); filtered.fail(function( value ) { alert( "Value is ( 3*6 = ) 18: " + value ); }); ``` * @example ​ ````Chain tasks: ```javascript var request = $.ajax( url, { dataType: "json" } ), chained = request.then(function( data ) { return $.ajax( url2, { data: { user: data.userId } } ); }); ​ chained.done(function( data ) { // data retrieved from url2 as provided by the first request }); ``` */ then( doneFilter: (t: TR, u: UR, v: VR, ...s: SR[]) => PromiseBase | Thenable | ARD, failFilter: (t: TJ, u: UJ, v: VJ, ...s: SJ[]) => PromiseBase | Thenable | ARF, progressFilter: (t: TN, u: UN, v: VN, ...s: SN[]) => PromiseBase | Thenable | ANP): PromiseBase; /** * Add handlers to be called when the Deferred object is resolved, rejected, or still in progress. * @param doneFilter An optional function that is called when the Deferred is resolved. * @param failFilter An optional function that is called when the Deferred is rejected. * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. * @see \`{@link https://api.jquery.com/deferred.then/ }\` * @since 1.8 * @example ​ ````Filter reject value: ```javascript var defer = $.Deferred(), filtered = defer.then( null, function( value ) { return value * 3; }); ​ defer.reject( 6 ); filtered.fail(function( value ) { alert( "Value is ( 3*6 = ) 18: " + value ); }); ``` * @example ​ ````Chain tasks: ```javascript var request = $.ajax( url, { dataType: "json" } ), chained = request.then(function( data ) { return $.ajax( url2, { data: { user: data.userId } } ); }); ​ chained.done(function( data ) { // data retrieved from url2 as provided by the first request }); ``` */ then( doneFilter: null, failFilter: (t: TJ, u: UJ, v: VJ, ...s: SJ[]) => PromiseBase | Thenable | ARF, progressFilter: (t: TN, u: UN, v: VN, ...s: SN[]) => PromiseBase | Thenable | ANP): PromiseBase; /** * Add handlers to be called when the Deferred object is resolved, rejected, or still in progress. * @param doneFilter An optional function that is called when the Deferred is resolved. * @param failFilter An optional function that is called when the Deferred is rejected. * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. * @see \`{@link https://api.jquery.com/deferred.then/ }\` * @since 1.8 * @example ​ ````Filter the resolve value: ```html deferred.then demo

​ ``` * @example ​ ````Chain tasks: ```javascript var request = $.ajax( url, { dataType: "json" } ), chained = request.then(function( data ) { return $.ajax( url2, { data: { user: data.userId } } ); }); ​ chained.done(function( data ) { // data retrieved from url2 as provided by the first request }); ``` */ then( doneFilter: (t: TR, u: UR, v: VR, ...s: SR[]) => PromiseBase | Thenable | ARD, failFilter: null, progressFilter: (t: TN, u: UN, v: VN, ...s: SN[]) => PromiseBase | Thenable | ANP): PromiseBase; /** * Add handlers to be called when the Deferred object is resolved, rejected, or still in progress. * @param doneFilter An optional function that is called when the Deferred is resolved. * @param failFilter An optional function that is called when the Deferred is rejected. * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. * @see \`{@link https://api.jquery.com/deferred.then/ }\` * @since 1.8 * @example ​ ````Chain tasks: ```javascript var request = $.ajax( url, { dataType: "json" } ), chained = request.then(function( data ) { return $.ajax( url2, { data: { user: data.userId } } ); }); ​ chained.done(function( data ) { // data retrieved from url2 as provided by the first request }); ``` */ then( doneFilter: null, failFilter: null, progressFilter?: (t: TN, u: UN, v: VN, ...s: SN[]) => PromiseBase | Thenable | ANP): PromiseBase; /** * Add handlers to be called when the Deferred object is resolved, rejected, or still in progress. * @param doneFilter An optional function that is called when the Deferred is resolved. * @param failFilter An optional function that is called when the Deferred is rejected. * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. * @see \`{@link https://api.jquery.com/deferred.then/ }\` * @since 1.8 * @example ​ ````Since the jQuery.get method returns a jqXHR object, which is derived from a Deferred object, we can attach handlers using the .then method. ```javascript $.get( "test.php" ).then( function() { alert( "$.get succeeded" ); }, function() { alert( "$.get failed!" ); } ); ``` * @example ​ ````Filter the resolve value: ```html deferred.then demo

​ ``` * @example ​ ````Filter reject value: ```javascript var defer = $.Deferred(), filtered = defer.then( null, function( value ) { return value * 3; }); ​ defer.reject( 6 ); filtered.fail(function( value ) { alert( "Value is ( 3*6 = ) 18: " + value ); }); ``` * @example ​ ````Chain tasks: ```javascript var request = $.ajax( url, { dataType: "json" } ), chained = request.then(function( data ) { return $.ajax( url2, { data: { user: data.userId } } ); }); ​ chained.done(function( data ) { // data retrieved from url2 as provided by the first request }); ``` */ then( doneFilter: (t: TR, u: UR, v: VR, ...s: SR[]) => PromiseBase | Thenable | ARD, failFilter: (t: TJ, u: UJ, v: VJ, ...s: SJ[]) => PromiseBase | Thenable | ARF, progressFilter?: null): PromiseBase; /** * Add handlers to be called when the Deferred object is resolved, rejected, or still in progress. * @param doneFilter An optional function that is called when the Deferred is resolved. * @param failFilter An optional function that is called when the Deferred is rejected. * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. * @see \`{@link https://api.jquery.com/deferred.then/ }\` * @since 1.8 * @example ​ ````Filter reject value: ```javascript var defer = $.Deferred(), filtered = defer.then( null, function( value ) { return value * 3; }); ​ defer.reject( 6 ); filtered.fail(function( value ) { alert( "Value is ( 3*6 = ) 18: " + value ); }); ``` * @example ​ ````Chain tasks: ```javascript var request = $.ajax( url, { dataType: "json" } ), chained = request.then(function( data ) { return $.ajax( url2, { data: { user: data.userId } } ); }); ​ chained.done(function( data ) { // data retrieved from url2 as provided by the first request }); ``` */ then( doneFilter: null, failFilter: (t: TJ, u: UJ, v: VJ, ...s: SJ[]) => PromiseBase | Thenable | ARF, progressFilter?: null): PromiseBase; /** * Add handlers to be called when the Deferred object is resolved, rejected, or still in progress. * @param doneFilter An optional function that is called when the Deferred is resolved. * @param failFilter An optional function that is called when the Deferred is rejected. * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. * @see \`{@link https://api.jquery.com/deferred.then/ }\` * @since 1.8 * @example ​ ````Filter the resolve value: ```html deferred.then demo

​ ``` * @example ​ ````Chain tasks: ```javascript var request = $.ajax( url, { dataType: "json" } ), chained = request.then(function( data ) { return $.ajax( url2, { data: { user: data.userId } } ); }); ​ chained.done(function( data ) { // data retrieved from url2 as provided by the first request }); ``` */ then( doneFilter: (t: TR, u: UR, v: VR, ...s: SR[]) => PromiseBase | Thenable | ARD, failFilter?: null, progressFilter?: null): PromiseBase; // #endregion /** * Add handlers to be called when the Deferred object is rejected. * @param failFilter A function that is called when the Deferred is rejected. * @see \`{@link https://api.jquery.com/deferred.catch/ }\` * @since 3.0 * @example ​ ````Since the jQuery.get method returns a jqXHR object, which is derived from a Deferred object, we can rejection handlers using the .catch method. ```javascript $.get( "test.php" ) .then( function() { alert( "$.get succeeded" ); } ) .catch( function() { alert( "$.get failed!" ); } ); ``` */ catch( failFilter?: ((t: TJ, u: UJ, v: VJ, ...s: SJ[]) => PromiseBase | Thenable | ARF) | null): PromiseBase; } /** * This object provides a subset of the methods of the Deferred object (then, done, fail, always, pipe, progress, state and promise) to prevent users from changing the state of the Deferred. * @see \`{@link https://api.jquery.com/Types/#Promise }\` */ interface Promise3 extends PromiseBase { } /** * This object provides a subset of the methods of the Deferred object (then, done, fail, always, pipe, progress, state and promise) to prevent users from changing the state of the Deferred. * @see \`{@link https://api.jquery.com/Types/#Promise }\` */ interface Promise2 extends PromiseBase { } /** * This object provides a subset of the methods of the Deferred object (then, done, fail, always, pipe, progress, state and promise) to prevent users from changing the state of the Deferred. * @see \`{@link https://api.jquery.com/Types/#Promise }\` */ interface Promise extends PromiseBase { } interface DeferredStatic { // https://jquery.com/upgrade-guide/3.0/#callback-exit exceptionHook: any; /** * A factory function that returns a chainable utility object with methods to register multiple callbacks into callback queues, invoke callback queues, and relay the success or failure state of any synchronous or asynchronous function. * @param beforeStart A function that is called just before the constructor returns. * @see \`{@link https://api.jquery.com/jQuery.Deferred/ }\` * @since 1.5 */ (beforeStart?: (this: Deferred, deferred: Deferred) => void): Deferred; } interface Deferred { /** * Call the progressCallbacks on a Deferred object with the given args. * @param args Optional arguments that are passed to the progressCallbacks. * @see \`{@link https://api.jquery.com/deferred.notify/ }\` * @since 1.7 */ notify(...args: TN[]): this; /** * Call the progressCallbacks on a Deferred object with the given context and args. * @param context Context passed to the progressCallbacks as the this object. * @param args An optional array of arguments that are passed to the progressCallbacks. * @see \`{@link https://api.jquery.com/deferred.notifyWith/ }\` * @since 1.7 */ notifyWith(context: object, args?: ArrayLike): this; /** * Reject a Deferred object and call any failCallbacks with the given args. * @param args Optional arguments that are passed to the failCallbacks. * @see \`{@link https://api.jquery.com/deferred.reject/ }\` * @since 1.5 */ reject(...args: TJ[]): this; /** * Reject a Deferred object and call any failCallbacks with the given context and args. * @param context Context passed to the failCallbacks as the this object. * @param args An optional array of arguments that are passed to the failCallbacks. * @see \`{@link https://api.jquery.com/deferred.rejectWith/ }\` * @since 1.5 */ rejectWith(context: object, args?: ArrayLike): this; /** * Resolve a Deferred object and call any doneCallbacks with the given args. * @param args Optional arguments that are passed to the doneCallbacks. * @see \`{@link https://api.jquery.com/deferred.resolve/ }\` * @since 1.5 */ resolve(...args: TR[]): this; /** * Resolve a Deferred object and call any doneCallbacks with the given context and args. * @param context Context passed to the doneCallbacks as the this object. * @param args An optional array of arguments that are passed to the doneCallbacks. * @see \`{@link https://api.jquery.com/deferred.resolveWith/ }\` * @since 1.5 */ resolveWith(context: object, args?: ArrayLike): this; /** * Add handlers to be called when the Deferred object is either resolved or rejected. * @param alwaysCallback A function, or array of functions, that is called when the Deferred is resolved or rejected. * @param alwaysCallbacks Optional additional functions, or arrays of functions, that are called when the Deferred is resolved or rejected. * @see \`{@link https://api.jquery.com/deferred.always/ }\` * @since 1.6 * @example ​ ````Since the jQuery.get() method returns a jqXHR object, which is derived from a Deferred object, we can attach a callback for both success and error using the deferred.always() method. ```javascript $.get( "test.php" ).always(function() { alert( "$.get completed with success or error callback arguments" ); }); ``` */ always(alwaysCallback: TypeOrArray>, ...alwaysCallbacks: Array>>): this; /** * Add handlers to be called when the Deferred object is resolved. * @param doneCallback A function, or array of functions, that are called when the Deferred is resolved. * @param doneCallbacks Optional additional functions, or arrays of functions, that are called when the Deferred is resolved. * @see \`{@link https://api.jquery.com/deferred.done/ }\` * @since 1.5 * @example ​ ````Since the jQuery.get method returns a jqXHR object, which is derived from a Deferred object, we can attach a success callback using the .done() method. ```javascript $.get( "test.php" ).done(function() { alert( "$.get succeeded" ); }); ``` * @example ​ ````Resolve a Deferred object when the user clicks a button, triggering a number of callback functions: ```html deferred.done demo

Ready...

​ ``` */ done(doneCallback: TypeOrArray>, ...doneCallbacks: Array>>): this; /** * Add handlers to be called when the Deferred object is rejected. * @param failCallback A function, or array of functions, that are called when the Deferred is rejected. * @param failCallbacks Optional additional functions, or arrays of functions, that are called when the Deferred is rejected. * @see \`{@link https://api.jquery.com/deferred.fail/ }\` * @since 1.5 * @example ​ ````Since the jQuery.get method returns a jqXHR object, which is derived from a Deferred, you can attach a success and failure callback using the deferred.done() and deferred.fail() methods. ```javascript $.get( "test.php" ) .done(function() { alert( "$.get succeeded" ); }) .fail(function() { alert( "$.get failed!" ); }); ``` */ fail(failCallback: TypeOrArray>, ...failCallbacks: Array>>): this; /** * Add handlers to be called when the Deferred object generates progress notifications. * @param progressCallback A function, or array of functions, to be called when the Deferred generates progress notifications. * @param progressCallbacks Optional additional functions, or arrays of functions, to be called when the Deferred generates * progress notifications. * @see \`{@link https://api.jquery.com/deferred.progress/ }\` * @since 1.7 */ progress(progressCallback: TypeOrArray>, ...progressCallbacks: Array>>): this; /** * Return a Deferred's Promise object. * @param target Object onto which the promise methods have to be attached * @see \`{@link https://api.jquery.com/deferred.promise/ }\` * @since 1.5 * @example ​ ````Use the target argument to promote an existing object to a Promise: ```javascript // Existing object var obj = { hello: function( name ) { alert( "Hello " + name ); } }, // Create a Deferred defer = $.Deferred(); ​ // Set object as a promise defer.promise( obj ); ​ // Resolve the deferred defer.resolve( "John" ); ​ // Use the object as a Promise obj.done(function( name ) { obj.hello( name ); // Will alert "Hello John" }).hello( "Karl" ); // Will alert "Hello Karl" ``` */ promise(target: TTarget): Promise & TTarget; /** * Return a Deferred's Promise object. * @see \`{@link https://api.jquery.com/deferred.promise/ }\` * @since 1.5 * @example ​ ````Create a Deferred and set two timer-based functions to either resolve or reject the Deferred after a random interval. Whichever one fires first "wins" and will call one of the callbacks. The second timeout has no effect since the Deferred is already complete (in a resolved or rejected state) from the first timeout action. Also set a timer-based progress notification function, and call a progress handler that adds "working..." to the document body. ```javascript function asyncEvent() { var dfd = jQuery.Deferred(); ​ // Resolve after a random interval setTimeout(function() { dfd.resolve( "hurray" ); }, Math.floor( 400 + Math.random() * 2000 ) ); ​ // Reject after a random interval setTimeout(function() { dfd.reject( "sorry" ); }, Math.floor( 400 + Math.random() * 2000 ) ); ​ // Show a "working..." message every half-second setTimeout(function working() { if ( dfd.state() === "pending" ) { dfd.notify( "working... " ); setTimeout( working, 500 ); } }, 1 ); ​ // Return the Promise so caller can't change the Deferred return dfd.promise(); } ​ // Attach a done, fail, and progress handler for the asyncEvent $.when( asyncEvent() ).then( function( status ) { alert( status + ", things are going well" ); }, function( status ) { alert( status + ", you fail this time" ); }, function( status ) { $( "body" ).append( status ); } ); ``` */ promise(): Promise; /** * Determine the current state of a Deferred object. * @see \`{@link https://api.jquery.com/deferred.state/ }\` * @since 1.7 */ state(): 'pending' | 'resolved' | 'rejected'; // region pipe // #region pipe /** * Utility method to filter and/or chain Deferreds. * @param doneFilter An optional function that is called when the Deferred is resolved. * @param failFilter An optional function that is called when the Deferred is rejected. * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. * @see \`{@link https://api.jquery.com/deferred.pipe/ }\` * @since 1.6 * @since 1.7 * @deprecated ​ Deprecated since 1.8. Use \`{@link then }\`. * * **Cause**: The `.pipe()` method on a `jQuery.Deferred` object was deprecated as of jQuery 1.8, when the `.then()` method was changed to perform the same function. * * **Solution**: In most cases it is sufficient to change all occurrences of `.pipe()` to `.then()`. Ensure that you aren't relying on context/state propagation (e.g., using `this`) or synchronous callback invocation, which were dropped from `.then()` for Promises/A+ interoperability as of jQuery 3.0. * @example ​ ````Filter resolve value: ```javascript var defer = $.Deferred(), filtered = defer.pipe(function( value ) { return value * 2; }); ​ defer.resolve( 5 ); filtered.done(function( value ) { alert( "Value is ( 2*5 = ) 10: " + value ); }); ``` * @example ​ ````Filter reject value: ```javascript var defer = $.Deferred(), filtered = defer.pipe( null, function( value ) { return value * 3; }); ​ defer.reject( 6 ); filtered.fail(function( value ) { alert( "Value is ( 3*6 = ) 18: " + value ); }); ``` * @example ​ ````Chain tasks: ```javascript var request = $.ajax( url, { dataType: "json" } ), chained = request.pipe(function( data ) { return $.ajax( url2, { data: { user: data.userId } } ); }); ​ chained.done(function( data ) { // data retrieved from url2 as provided by the first request }); ``` */ pipe( doneFilter: (...t: TR[]) => PromiseBase | Thenable | ARD, failFilter: (...t: TJ[]) => PromiseBase | Thenable | AJF, progressFilter: (...t: TN[]) => PromiseBase | Thenable | ANP): PromiseBase; /** * Utility method to filter and/or chain Deferreds. * @param doneFilter An optional function that is called when the Deferred is resolved. * @param failFilter An optional function that is called when the Deferred is rejected. * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. * @see \`{@link https://api.jquery.com/deferred.pipe/ }\` * @since 1.6 * @since 1.7 * @deprecated ​ Deprecated since 1.8. Use \`{@link then }\`. * * **Cause**: The `.pipe()` method on a `jQuery.Deferred` object was deprecated as of jQuery 1.8, when the `.then()` method was changed to perform the same function. * * **Solution**: In most cases it is sufficient to change all occurrences of `.pipe()` to `.then()`. Ensure that you aren't relying on context/state propagation (e.g., using `this`) or synchronous callback invocation, which were dropped from `.then()` for Promises/A+ interoperability as of jQuery 3.0. * @example ​ ````Filter reject value: ```javascript var defer = $.Deferred(), filtered = defer.pipe( null, function( value ) { return value * 3; }); ​ defer.reject( 6 ); filtered.fail(function( value ) { alert( "Value is ( 3*6 = ) 18: " + value ); }); ``` * @example ​ ````Chain tasks: ```javascript var request = $.ajax( url, { dataType: "json" } ), chained = request.pipe(function( data ) { return $.ajax( url2, { data: { user: data.userId } } ); }); ​ chained.done(function( data ) { // data retrieved from url2 as provided by the first request }); ``` */ pipe( doneFilter: null, failFilter: (...t: TJ[]) => PromiseBase | Thenable | AJF, progressFilter: (...t: TN[]) => PromiseBase | Thenable | ANP): PromiseBase; /** * Utility method to filter and/or chain Deferreds. * @param doneFilter An optional function that is called when the Deferred is resolved. * @param failFilter An optional function that is called when the Deferred is rejected. * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. * @see \`{@link https://api.jquery.com/deferred.pipe/ }\` * @since 1.6 * @since 1.7 * @deprecated ​ Deprecated since 1.8. Use \`{@link then }\`. * * **Cause**: The `.pipe()` method on a `jQuery.Deferred` object was deprecated as of jQuery 1.8, when the `.then()` method was changed to perform the same function. * * **Solution**: In most cases it is sufficient to change all occurrences of `.pipe()` to `.then()`. Ensure that you aren't relying on context/state propagation (e.g., using `this`) or synchronous callback invocation, which were dropped from `.then()` for Promises/A+ interoperability as of jQuery 3.0. * @example ​ ````Filter resolve value: ```javascript var defer = $.Deferred(), filtered = defer.pipe(function( value ) { return value * 2; }); ​ defer.resolve( 5 ); filtered.done(function( value ) { alert( "Value is ( 2*5 = ) 10: " + value ); }); ``` * @example ​ ````Chain tasks: ```javascript var request = $.ajax( url, { dataType: "json" } ), chained = request.pipe(function( data ) { return $.ajax( url2, { data: { user: data.userId } } ); }); ​ chained.done(function( data ) { // data retrieved from url2 as provided by the first request }); ``` */ pipe( doneFilter: (...t: TR[]) => PromiseBase | Thenable | ARD, failFilter: null, progressFilter: (...t: TN[]) => PromiseBase | Thenable | ANP): PromiseBase; /** * Utility method to filter and/or chain Deferreds. * @param doneFilter An optional function that is called when the Deferred is resolved. * @param failFilter An optional function that is called when the Deferred is rejected. * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. * @see \`{@link https://api.jquery.com/deferred.pipe/ }\` * @since 1.6 * @since 1.7 * @deprecated ​ Deprecated since 1.8. Use \`{@link then }\`. * * **Cause**: The `.pipe()` method on a `jQuery.Deferred` object was deprecated as of jQuery 1.8, when the `.then()` method was changed to perform the same function. * * **Solution**: In most cases it is sufficient to change all occurrences of `.pipe()` to `.then()`. Ensure that you aren't relying on context/state propagation (e.g., using `this`) or synchronous callback invocation, which were dropped from `.then()` for Promises/A+ interoperability as of jQuery 3.0. * @example ​ ````Chain tasks: ```javascript var request = $.ajax( url, { dataType: "json" } ), chained = request.pipe(function( data ) { return $.ajax( url2, { data: { user: data.userId } } ); }); ​ chained.done(function( data ) { // data retrieved from url2 as provided by the first request }); ``` */ pipe( doneFilter: null, failFilter: null, progressFilter?: (...t: TN[]) => PromiseBase | Thenable | ANP): PromiseBase; /** * Utility method to filter and/or chain Deferreds. * @param doneFilter An optional function that is called when the Deferred is resolved. * @param failFilter An optional function that is called when the Deferred is rejected. * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. * @see \`{@link https://api.jquery.com/deferred.pipe/ }\` * @since 1.6 * @since 1.7 * @deprecated ​ Deprecated since 1.8. Use \`{@link then }\`. * * **Cause**: The `.pipe()` method on a `jQuery.Deferred` object was deprecated as of jQuery 1.8, when the `.then()` method was changed to perform the same function. * * **Solution**: In most cases it is sufficient to change all occurrences of `.pipe()` to `.then()`. Ensure that you aren't relying on context/state propagation (e.g., using `this`) or synchronous callback invocation, which were dropped from `.then()` for Promises/A+ interoperability as of jQuery 3.0. * @example ​ ````Filter resolve value: ```javascript var defer = $.Deferred(), filtered = defer.pipe(function( value ) { return value * 2; }); ​ defer.resolve( 5 ); filtered.done(function( value ) { alert( "Value is ( 2*5 = ) 10: " + value ); }); ``` * @example ​ ````Filter reject value: ```javascript var defer = $.Deferred(), filtered = defer.pipe( null, function( value ) { return value * 3; }); ​ defer.reject( 6 ); filtered.fail(function( value ) { alert( "Value is ( 3*6 = ) 18: " + value ); }); ``` * @example ​ ````Chain tasks: ```javascript var request = $.ajax( url, { dataType: "json" } ), chained = request.pipe(function( data ) { return $.ajax( url2, { data: { user: data.userId } } ); }); ​ chained.done(function( data ) { // data retrieved from url2 as provided by the first request }); ``` */ pipe( doneFilter: (...t: TR[]) => PromiseBase | Thenable | ARD, failFilter: (...t: TJ[]) => PromiseBase | Thenable | AJF, progressFilter?: null): PromiseBase; /** * Utility method to filter and/or chain Deferreds. * @param doneFilter An optional function that is called when the Deferred is resolved. * @param failFilter An optional function that is called when the Deferred is rejected. * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. * @see \`{@link https://api.jquery.com/deferred.pipe/ }\` * @since 1.6 * @since 1.7 * @deprecated ​ Deprecated since 1.8. Use \`{@link then }\`. * * **Cause**: The `.pipe()` method on a `jQuery.Deferred` object was deprecated as of jQuery 1.8, when the `.then()` method was changed to perform the same function. * * **Solution**: In most cases it is sufficient to change all occurrences of `.pipe()` to `.then()`. Ensure that you aren't relying on context/state propagation (e.g., using `this`) or synchronous callback invocation, which were dropped from `.then()` for Promises/A+ interoperability as of jQuery 3.0. * @example ​ ````Filter reject value: ```javascript var defer = $.Deferred(), filtered = defer.pipe( null, function( value ) { return value * 3; }); ​ defer.reject( 6 ); filtered.fail(function( value ) { alert( "Value is ( 3*6 = ) 18: " + value ); }); ``` * @example ​ ````Chain tasks: ```javascript var request = $.ajax( url, { dataType: "json" } ), chained = request.pipe(function( data ) { return $.ajax( url2, { data: { user: data.userId } } ); }); ​ chained.done(function( data ) { // data retrieved from url2 as provided by the first request }); ``` */ pipe( doneFilter: null, failFilter: (...t: TJ[]) => PromiseBase | Thenable | AJF, progressFilter?: null): PromiseBase; /** * Utility method to filter and/or chain Deferreds. * @param doneFilter An optional function that is called when the Deferred is resolved. * @param failFilter An optional function that is called when the Deferred is rejected. * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. * @see \`{@link https://api.jquery.com/deferred.pipe/ }\` * @since 1.6 * @since 1.7 * @deprecated ​ Deprecated since 1.8. Use \`{@link then }\`. * * **Cause**: The `.pipe()` method on a `jQuery.Deferred` object was deprecated as of jQuery 1.8, when the `.then()` method was changed to perform the same function. * * **Solution**: In most cases it is sufficient to change all occurrences of `.pipe()` to `.then()`. Ensure that you aren't relying on context/state propagation (e.g., using `this`) or synchronous callback invocation, which were dropped from `.then()` for Promises/A+ interoperability as of jQuery 3.0. * @example ​ ````Filter resolve value: ```javascript var defer = $.Deferred(), filtered = defer.pipe(function( value ) { return value * 2; }); ​ defer.resolve( 5 ); filtered.done(function( value ) { alert( "Value is ( 2*5 = ) 10: " + value ); }); ``` * @example ​ ````Chain tasks: ```javascript var request = $.ajax( url, { dataType: "json" } ), chained = request.pipe(function( data ) { return $.ajax( url2, { data: { user: data.userId } } ); }); ​ chained.done(function( data ) { // data retrieved from url2 as provided by the first request }); ``` */ pipe( doneFilter: (...t: TR[]) => PromiseBase | Thenable | ARD, failFilter?: null, progressFilter?: null): PromiseBase; // #endregion // region then // #region then /** * Add handlers to be called when the Deferred object is resolved, rejected, or still in progress. * @param doneFilter A function that is called when the Deferred is resolved. * @param failFilter An optional function that is called when the Deferred is rejected. * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. * @see \`{@link https://api.jquery.com/deferred.then/ }\` * @since 1.8 * @example ​ ````Since the jQuery.get method returns a jqXHR object, which is derived from a Deferred object, we can attach handlers using the .then method. ```javascript $.get( "test.php" ).then( function() { alert( "$.get succeeded" ); }, function() { alert( "$.get failed!" ); } ); ``` * @example ​ ````Filter the resolve value: ```html deferred.then demo

​ ``` * @example ​ ````Filter reject value: ```javascript var defer = $.Deferred(), filtered = defer.then( null, function( value ) { return value * 3; }); ​ defer.reject( 6 ); filtered.fail(function( value ) { alert( "Value is ( 3*6 = ) 18: " + value ); }); ``` * @example ​ ````Chain tasks: ```javascript var request = $.ajax( url, { dataType: "json" } ), chained = request.then(function( data ) { return $.ajax( url2, { data: { user: data.userId } } ); }); ​ chained.done(function( data ) { // data retrieved from url2 as provided by the first request }); ``` */ then( doneFilter: (...t: TR[]) => PromiseBase | Thenable | ARD, failFilter: (...t: TJ[]) => PromiseBase | Thenable | ARF, progressFilter: (...t: TN[]) => PromiseBase | Thenable | ANP): PromiseBase; /** * Add handlers to be called when the Deferred object is resolved, rejected, or still in progress. * @param doneFilter A function that is called when the Deferred is resolved. * @param failFilter An optional function that is called when the Deferred is rejected. * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. * @see \`{@link https://api.jquery.com/deferred.then/ }\` * @since 1.8 * @example ​ ````Filter reject value: ```javascript var defer = $.Deferred(), filtered = defer.then( null, function( value ) { return value * 3; }); ​ defer.reject( 6 ); filtered.fail(function( value ) { alert( "Value is ( 3*6 = ) 18: " + value ); }); ``` * @example ​ ````Chain tasks: ```javascript var request = $.ajax( url, { dataType: "json" } ), chained = request.then(function( data ) { return $.ajax( url2, { data: { user: data.userId } } ); }); ​ chained.done(function( data ) { // data retrieved from url2 as provided by the first request }); ``` */ then( doneFilter: null, failFilter: (...t: TJ[]) => PromiseBase | Thenable | ARF, progressFilter: (...t: TN[]) => PromiseBase | Thenable | ANP): PromiseBase; /** * Add handlers to be called when the Deferred object is resolved, rejected, or still in progress. * @param doneFilter A function that is called when the Deferred is resolved. * @param failFilter An optional function that is called when the Deferred is rejected. * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. * @see \`{@link https://api.jquery.com/deferred.then/ }\` * @since 1.8 * @example ​ ````Filter the resolve value: ```html deferred.then demo

​ ``` * @example ​ ````Chain tasks: ```javascript var request = $.ajax( url, { dataType: "json" } ), chained = request.then(function( data ) { return $.ajax( url2, { data: { user: data.userId } } ); }); ​ chained.done(function( data ) { // data retrieved from url2 as provided by the first request }); ``` */ then( doneFilter: (...t: TR[]) => PromiseBase | Thenable | ARD, failFilter: null, progressFilter: (...t: TN[]) => PromiseBase | Thenable | ANP): PromiseBase; /** * Add handlers to be called when the Deferred object is resolved, rejected, or still in progress. * @param doneFilter A function that is called when the Deferred is resolved. * @param failFilter An optional function that is called when the Deferred is rejected. * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. * @see \`{@link https://api.jquery.com/deferred.then/ }\` * @since 1.8 * @example ​ ````Chain tasks: ```javascript var request = $.ajax( url, { dataType: "json" } ), chained = request.then(function( data ) { return $.ajax( url2, { data: { user: data.userId } } ); }); ​ chained.done(function( data ) { // data retrieved from url2 as provided by the first request }); ``` */ then( doneFilter: null, failFilter: null, progressFilter?: (...t: TN[]) => PromiseBase | Thenable | ANP): PromiseBase; /** * Add handlers to be called when the Deferred object is resolved, rejected, or still in progress. * @param doneFilter An optional function that is called when the Deferred is resolved. * @param failFilter An optional function that is called when the Deferred is rejected. * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. * @see \`{@link https://api.jquery.com/deferred.then/ }\` * @since 1.8 * @example ​ ````Since the jQuery.get method returns a jqXHR object, which is derived from a Deferred object, we can attach handlers using the .then method. ```javascript $.get( "test.php" ).then( function() { alert( "$.get succeeded" ); }, function() { alert( "$.get failed!" ); } ); ``` * @example ​ ````Filter the resolve value: ```html deferred.then demo

​ ``` * @example ​ ````Filter reject value: ```javascript var defer = $.Deferred(), filtered = defer.then( null, function( value ) { return value * 3; }); ​ defer.reject( 6 ); filtered.fail(function( value ) { alert( "Value is ( 3*6 = ) 18: " + value ); }); ``` * @example ​ ````Chain tasks: ```javascript var request = $.ajax( url, { dataType: "json" } ), chained = request.then(function( data ) { return $.ajax( url2, { data: { user: data.userId } } ); }); ​ chained.done(function( data ) { // data retrieved from url2 as provided by the first request }); ``` */ then( doneFilter: (...t: TR[]) => PromiseBase | Thenable | ARD, failFilter: (...t: TJ[]) => PromiseBase | Thenable | ARF, progressFilter?: null): PromiseBase; /** * Add handlers to be called when the Deferred object is resolved, rejected, or still in progress. * @param doneFilter An optional function that is called when the Deferred is resolved. * @param failFilter An optional function that is called when the Deferred is rejected. * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. * @see \`{@link https://api.jquery.com/deferred.then/ }\` * @since 1.8 * @example ​ ````Filter reject value: ```javascript var defer = $.Deferred(), filtered = defer.then( null, function( value ) { return value * 3; }); ​ defer.reject( 6 ); filtered.fail(function( value ) { alert( "Value is ( 3*6 = ) 18: " + value ); }); ``` * @example ​ ````Chain tasks: ```javascript var request = $.ajax( url, { dataType: "json" } ), chained = request.then(function( data ) { return $.ajax( url2, { data: { user: data.userId } } ); }); ​ chained.done(function( data ) { // data retrieved from url2 as provided by the first request }); ``` */ then( doneFilter: null, failFilter: (...t: TJ[]) => PromiseBase | Thenable | ARF, progressFilter?: null): PromiseBase; /** * Add handlers to be called when the Deferred object is resolved, rejected, or still in progress. * @param doneFilter An optional function that is called when the Deferred is resolved. * @param failFilter An optional function that is called when the Deferred is rejected. * @param progressFilter An optional function that is called when progress notifications are sent to the Deferred. * @see \`{@link https://api.jquery.com/deferred.then/ }\` * @since 1.8 * @example ​ ````Filter the resolve value: ```html deferred.then demo

​ ``` * @example ​ ````Chain tasks: ```javascript var request = $.ajax( url, { dataType: "json" } ), chained = request.then(function( data ) { return $.ajax( url2, { data: { user: data.userId } } ); }); ​ chained.done(function( data ) { // data retrieved from url2 as provided by the first request }); ``` */ then( doneFilter: (...t: TR[]) => PromiseBase | Thenable | ARD, failFilter?: null, progressFilter?: null): PromiseBase; // #endregion /** * Add handlers to be called when the Deferred object is rejected. * @param failFilter A function that is called when the Deferred is rejected. * @see \`{@link https://api.jquery.com/deferred.catch/ }\` * @since 3.0 * @example ​ ````Since the jQuery.get method returns a jqXHR object, which is derived from a Deferred object, we can rejection handlers using the .catch method. ```javascript $.get( "test.php" ) .then( function() { alert( "$.get succeeded" ); } ) .catch( function() { alert( "$.get failed!" ); } ); ``` */ catch( failFilter?: ((...t: TJ[]) => PromiseBase | Thenable | ARF) | null): PromiseBase; } namespace Deferred { type CallbackBase = (t: T, u: U, v: V, ...r: R[]) => void; interface Callback3 extends CallbackBase { } type Callback = (...args: T[]) => void; /** * @deprecated ​ Deprecated. Use \`{@link Callback }\`. */ interface DoneCallback extends Callback { } /** * @deprecated ​ Deprecated. Use \`{@link Callback }\`. */ interface FailCallback extends Callback { } /** * @deprecated ​ Deprecated. Use \`{@link Callback }\`. */ interface AlwaysCallback extends Callback { } /** * @deprecated ​ Deprecated. Use \`{@link Callback }\`. */ interface ProgressCallback extends Callback { } } // #endregion // region Effects // #region Effects type Duration = number | 'fast' | 'slow'; /** * @see \`{@link https://api.jquery.com/animate/#animate-properties-options }\` */ interface EffectsOptions extends PlainObject { /** * A function to be called when the animation on an element completes or stops without completing (its Promise object is either resolved or rejected). */ always?(this: TElement, animation: Animation, jumpedToEnd: boolean): void; /** * A function that is called once the animation on an element is complete. */ complete?(this: TElement): void; /** * A function to be called when the animation on an element completes (its Promise object is resolved). */ done?(this: TElement, animation: Animation, jumpedToEnd: boolean): void; /** * A string or number determining how long the animation will run. */ duration?: Duration | undefined; /** * A string indicating which easing function to use for the transition. */ easing?: string | undefined; /** * A function to be called when the animation on an element fails to complete (its Promise object is rejected). */ fail?(this: TElement, animation: Animation, jumpedToEnd: boolean): void; /** * A function to be called after each step of the animation, only once per animated element regardless of the number of animated properties. */ progress?(this: TElement, animation: Animation, progress: number, remainingMs: number): void; /** * 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. */ queue?: boolean | string | undefined; /** * An object containing one or more of the CSS properties defined by the properties argument and their corresponding easing functions. */ specialEasing?: PlainObject | undefined; /** * A function to call when the animation on an element begins. */ start?(this: TElement, animation: Animation): void; /** * A function to be called for each animated property of each animated element. This function provides an opportunity to modify the Tween object to change the value of the property before it is set. */ step?(this: TElement, now: number, tween: Tween): void; } // region Animation // #region Animation /** * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#animation-factory }\` * @since 1.8 */ interface AnimationStatic { /** * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#animation-factory }\` * @since 1.8 */ (element: TElement, props: PlainObject, opts: EffectsOptions): Animation; /** * During the initial setup, `jQuery.Animation` will call any callbacks that have been registered through `jQuery.Animation.prefilter( function( element, props, opts ) )`. * @param callback The prefilter will have `this` set to an animation object, and you can modify any of the `props` or * `opts` however you need. The prefilter _may_ return its own promise which also implements `stop()`, * in which case, processing of prefilters stops. If the prefilter is not trying to override the animation * entirely, it should return `undefined` or some other falsy value. * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#prefilters }\` * @since 1.8 */ prefilter( callback: (this: Animation, element: TElement, props: PlainObject, opts: EffectsOptions) => Animation | _Falsy | void, prepend?: boolean ): void; /** * A "Tweener" is a function responsible for creating a tween object, and you might want to override these if you want to implement complex values ( like a clip/transform array matrix ) in a single property. * * You can override the default process for creating a tween in order to provide your own tween object by using `jQuery.Animation.tweener( props, callback( prop, value ) )`. * @param props A space separated list of properties to be passed to your tweener, or `"*"` if it should be called * for all properties. * @param callback The callback will be called with `this` being an `Animation` object. The tweener function will * generally start with `var tween = this.createTween( prop, value );`, but doesn't nessecarily need to * use the `jQuery.Tween()` factory. * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#tweeners }\` * @since 1.8 */ tweener(props: string, callback: Tweener): void; } /** * The promise will be resolved when the animation reaches its end, and rejected when terminated early. The context of callbacks attached to the promise will be the element, and the arguments will be the `Animation` object and a boolean `jumpedToEnd` which when true means the animation was stopped with `gotoEnd`, when `undefined` the animation completed naturally. * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#animation-factory }\` * @since 1.8 */ interface Animation extends Promise3< Animation, Animation, Animation, true | undefined, false, number, never, never, number > { /** * The duration specified in ms * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#animation-factory }\` * @since 1.8 */ duration: number; /** * The element being animatied * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#animation-factory }\` * @since 1.8 */ elem: TElement; /** * The final value of each property animating * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#animation-factory }\` * @since 1.8 */ props: PlainObject; /** * The animation options * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#animation-factory }\` * @since 1.8 */ opts: EffectsOptions; /** * The original properties before being filtered * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#animation-factory }\` * @since 1.8 */ originalProps: PlainObject; /** * The original options before being filtered * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#animation-factory }\` * @since 1.8 */ originalOpts: EffectsOptions; /** * The numeric value of `new Date()` when the animation began * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#animation-factory }\` * @since 1.8 */ startTime: number; /** * The animations tweens. * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#animation-factory }\` * @since 1.8 */ tweens: Array>; /** * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#animation-factory }\` * @since 1.8 */ createTween(propName: string, finalValue: number): Tween; /** * Stops the animation early, optionally going to the end. * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#animation-factory }\` * @since 1.8 */ stop(gotoEnd: boolean): this; } /** * A "Tweener" is a function responsible for creating a tween object, and you might want to override these if you want to implement complex values ( like a clip/transform array matrix ) in a single property. * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#tweeners }\` * @since 1.8 */ type Tweener = (this: Animation, propName: string, finalValue: number) => Tween; /** * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#tweens }\` * @since 1.8 */ interface TweenStatic { /** * `jQuery.Tween.propHooks[ prop ]` is a hook point that replaces `jQuery.fx.step[ prop ]` (which is being deprecated.) These hooks are used by the tween to get and set values on elements. * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#tween-hooks }\` * @since 1.8 * @example ```javascript jQuery.Tween.propHooks[ property ] = { get: function( tween ) { // get tween.prop from tween.elem and return it }, set: function( tween ) { // set tween.prop on tween.elem to tween.now + tween.unit } } ``` */ propHooks: PropHooks; /** * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#tweens }\` * @since 1.8 */ (elem: TElement, options: EffectsOptions, prop: string, end: number, easing?: string, unit?: string): Tween; } /** * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#tweens }\` * @since 1.8 */ // This should be a class but doesn't work correctly under the JQuery namespace. Tween should be an inner class of jQuery. interface Tween { /** * The easing used * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#tweens }\` * @since 1.8 */ easing: string; /** * The element being animated * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#tweens }\` * @since 1.8 */ elem: TElement; /** * The ending value of the tween * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#tweens }\` * @since 1.8 */ end: number; /** * The current value of the tween * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#tweens }\` * @since 1.8 */ now: number; /** * A reference to the animation options * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#tweens }\` * @since 1.8 */ options: EffectsOptions; // Undocumented. Is this intended to be public? pos?: number | undefined; /** * The property being animated * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#tweens }\` * @since 1.8 */ prop: string; /** * The starting value of the tween * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#tweens }\` * @since 1.8 */ start: number; /** * The CSS unit for the tween * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#tweens }\` * @since 1.8 */ unit: string; /** * Reads the current value for property from the element * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#tweens }\` * @since 1.8 */ cur(): any; /** * Updates the value for the property on the animated elemd. * @param progress A number from 0 to 1. * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#tweens }\` * @since 1.8 */ run(progress: number): this; } /** * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#tween-hooks }\` * @since 1.8 */ // Workaround for TypeScript 2.3 which does not have support for weak types handling. type PropHook = { /** * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#tween-hooks }\` * @since 1.8 */ get(tween: Tween): any; } | { /** * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#tween-hooks }\` * @since 1.8 */ set(tween: Tween): void; } | { [key: string]: never; }; /** * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#tween-hooks }\` * @since 1.8 */ interface PropHooks { [property: string]: PropHook; } // #endregion // region Easing // #region Easing type EasingMethod = (percent: number) => number; interface Easings { [name: string]: EasingMethod; } // #endregion // region Effects (fx) // #region Effects (fx) interface Effects { /** * The rate (in milliseconds) at which animations fire. * @see \`{@link https://api.jquery.com/jQuery.fx.interval/ }\` * @since 1.4.3 * @deprecated ​ Deprecated since 3.0. See \`{@link https://api.jquery.com/jQuery.fx.interval/ }\`. * * **Cause**: As of jQuery 3.0 the `jQuery.fx.interval` property can be used to change the animation interval only on browsers that do not support the `window.requestAnimationFrame()` method. That is currently only Internet Explorer 9 and the Android Browser. Once support is dropped for these browsers, the property will serve no purpose and it will be removed. * * **Solution**: Find and remove code that changes or uses `jQuery.fx.interval`. If the value is being used by code in your page or a plugin, the code may be making assumptions that are no longer valid. The default value of `jQuery.fx.interval` is `13` (milliseconds), which could be used instead of accessing this property. * @example ​ ````Cause all animations to run with less frames. ```html jQuery.fx.interval demo

``` */ interval: number; /** * Globally disable all animations. * @see \`{@link https://api.jquery.com/jQuery.fx.off/ }\` * @since 1.3 * @example ​ ````Toggle animation on and off ```html jQuery.fx.off demo
``` */ off: boolean; /** * @deprecated ​ Deprecated since 1.8. Use \`{@link Tween.propHooks jQuery.Tween.propHooks}\`. * * `jQuery.fx.step` functions are being replaced by `jQuery.Tween.propHooks` and may eventually be removed, but are still supported via the default tween propHook. */ step: PlainObject>; /** * _overridable_ Clears up the `setInterval` * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#plugging-in-a-different-timer-loop }\` * @since 1.8 */ stop(): void; /** * Calls `.run()` on each object in the `jQuery.timers` array, removing it from the array if `.run()` returns a falsy value. Calls `jQuery.fx.stop()` whenever there are no timers remaining. * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#plugging-in-a-different-timer-loop }\` * @since 1.8 */ tick(): void; /** * _overridable_ Creates a `setInterval` if one doesn't already exist, and pushes `tickFunction` to the `jQuery.timers` array. `tickFunction` should also have `anim`, `elem`, and `queue` properties that reference the animation object, animated element, and queue option to facilitate `jQuery.fn.stop()` * * By overriding `fx.timer` and `fx.stop` you should be able to implement any animation tick behaviour you desire. (like using `requestAnimationFrame` instead of `setTimeout`.) * * There is an example of overriding the timer loop in \`{@link https://github.com/gnarf37/jquery-requestAnimationFrame jquery.requestAnimationFrame}\` * @see \`{@link https://gist.github.com/gnarf/54829d408993526fe475#plugging-in-a-different-timer-loop }\` * @since 1.8 */ timer(tickFunction: TickFunction): void; } /** * @deprecated ​ Deprecated since 1.8. Use \`{@link Tween.propHooks jQuery.Tween.propHooks}\`. * * `jQuery.fx.step` functions are being replaced by `jQuery.Tween.propHooks` and may eventually be removed, but are still supported via the default tween propHook. */ type AnimationHook = (fx: Tween) => void; interface TickFunction { anim: Animation; elem: TElement; queue: boolean | string; (): any; } // #endregion // region Queue // #region Queue // TODO: Is the first element always a string or is that specific to the 'fx' queue? type Queue = { 0: string; } & Array>; type QueueFunction = (this: TElement, next: () => void) => void; // #endregion // region Speed // #region Speed // Workaround for TypeScript 2.3 which does not have support for weak types handling. type SpeedSettings = { /** * A string or number determining how long the animation will run. */ duration: Duration; } | { /** * A string indicating which easing function to use for the transition. */ easing: string; } | { /** * A function to call once the animation is complete. */ complete(this: TElement): void; } | { [key: string]: never; }; // #endregion // #endregion // region Events // #region Events // region Event // #region Event // This should be a class but doesn't work correctly under the JQuery namespace. Event should be an inner class of jQuery. /** * jQuery's event system normalizes the event object according to W3C standards. The event object is guaranteed to be passed to the event handler (no checks for window.event required). It normalizes the target, relatedTarget, which, metaKey and pageX/Y properties and provides both stopPropagation() and preventDefault() methods. * * Those properties are all documented, and accompanied by examples, on the \`{@link http://api.jquery.com/category/events/event-object/ Event object}\` page. * * The standard events in the Document Object Model are: `blur`, `focus`, `load`, `resize`, `scroll`, `unload`, `beforeunload`, `click`, `dblclick`, `mousedown`, `mouseup`, `mousemove`, `mouseover`, `mouseout`, `mouseenter`, `mouseleave`, `change`, `select`, `submit`, `keydown`, `keypress`, and `keyup`. Since the DOM event names have predefined meanings for some elements, using them for other purposes is not recommended. jQuery's event model can trigger an event by any name on an element, and it is propagated up the DOM tree to which that element belongs, if any. * @see \`{@link https://api.jquery.com/category/events/event-object/ }\` */ interface EventStatic { /** * The jQuery.Event constructor is exposed and can be used when calling trigger. The new operator is optional. * * Check \`{@link https://api.jquery.com/trigger/ trigger}\`'s documentation to see how to combine it with your own event object. * @see \`{@link https://api.jquery.com/category/events/event-object/ }\` * @since 1.6 * @example ```javascript //Create a new jQuery.Event object without the "new" operator. var e = jQuery.Event( "click" ); ​ // trigger an artificial click event jQuery( "body" ).trigger( e ); ``` * @example ```javascript // Create a new jQuery.Event object with specified event properties. var e = jQuery.Event( "keydown", { keyCode: 64 } ); ​ // trigger an artificial keydown event with keyCode 64 jQuery( "body" ).trigger( e ); ``` */ (event: string, properties?: T): Event & T; /** * The jQuery.Event constructor is exposed and can be used when calling trigger. The new operator is optional. * * Check \`{@link https://api.jquery.com/trigger/ trigger}\`'s documentation to see how to combine it with your own event object. * @see \`{@link https://api.jquery.com/category/events/event-object/ }\` * @since 1.6 * @example ```javascript //Create a new jQuery.Event object without the "new" operator. var e = jQuery.Event( "click" ); ​ // trigger an artificial click event jQuery( "body" ).trigger( e ); ``` * @example ```javascript // Create a new jQuery.Event object with specified event properties. var e = jQuery.Event( "keydown", { keyCode: 64 } ); ​ // trigger an artificial keydown event with keyCode 64 jQuery( "body" ).trigger( e ); ``` */ new (event: string, properties?: T): Event & T; } /** * jQuery's event system normalizes the event object according to W3C standards. The event object is guaranteed to be passed to the event handler (no checks for window.event required). It normalizes the target, relatedTarget, which, metaKey and pageX/Y properties and provides both stopPropagation() and preventDefault() methods. * * Those properties are all documented, and accompanied by examples, on the \`{@link http://api.jquery.com/category/events/event-object/ Event object}\` page. * * The standard events in the Document Object Model are: `blur`, `focus`, `load`, `resize`, `scroll`, `unload`, `beforeunload`, `click`, `dblclick`, `mousedown`, `mouseup`, `mousemove`, `mouseover`, `mouseout`, `mouseenter`, `mouseleave`, `change`, `select`, `submit`, `keydown`, `keypress`, and `keyup`. Since the DOM event names have predefined meanings for some elements, using them for other purposes is not recommended. jQuery's event model can trigger an event by any name on an element, and it is propagated up the DOM tree to which that element belongs, if any. * @see \`{@link https://api.jquery.com/category/events/event-object/ }\` * @see \`{@link TriggeredEvent }\` */ interface Event { // region Copied properties // #region Copied properties // Event bubbles: boolean | undefined; cancelable: boolean | undefined; eventPhase: number | undefined; // UIEvent detail: number | undefined; view: Window | undefined; // MouseEvent button: number | undefined; buttons: number | undefined; clientX: number | undefined; clientY: number | undefined; offsetX: number | undefined; offsetY: number | undefined; /** * The mouse position relative to the left edge of the document. * @see \`{@link https://api.jquery.com/event.pageX/ }\` * @since 1.0.4 * @example ​ ````Show the mouse position relative to the left and top edges of the document (within this iframe). ```html event.pageX demo
​ ``` */ pageX: number | undefined; /** * The mouse position relative to the top edge of the document. * @see \`{@link https://api.jquery.com/event.pageY/ }\` * @since 1.0.4 * @example ​ ````Show the mouse position relative to the left and top edges of the document (within this iframe). ```html event.pageY demo
​ ``` */ pageY: number | undefined; screenX: number | undefined; screenY: number | undefined; /** @deprecated */ toElement: Element | undefined; // PointerEvent pointerId: number | undefined; pointerType: string | undefined; // KeyboardEvent /** @deprecated */ char: string | undefined; /** @deprecated */ charCode: number | undefined; key: string | undefined; /** @deprecated */ keyCode: number | undefined; // TouchEvent changedTouches: TouchList | undefined; targetTouches: TouchList | undefined; touches: TouchList | undefined; // MouseEvent, KeyboardEvent /** * For key or mouse events, this property indicates the specific key or button that was pressed. * @see \`{@link https://api.jquery.com/event.which/ }\` * @since 1.1.3 * @example ​ ````Log which key was depressed. ```html event.which demo
​ ``` * @example ​ ````Log which mouse button was depressed. ```html event.which demo
​ ``` */ which: number | undefined; // MouseEvent, KeyboardEvent, TouchEvent altKey: boolean | undefined; ctrlKey: boolean | undefined; /** * Indicates whether the META key was pressed when the event fired. * @see \`{@link https://api.jquery.com/event.metaKey/ }\` * @since 1.0.4 * @example ​ ````Determine whether the META key was pressed when the event fired. ```html event.metaKey demo
​ ``` */ metaKey: boolean | undefined; shiftKey: boolean | undefined; // #endregion /** * The difference in milliseconds between the time the browser created the event and January 1, 1970. * @see \`{@link https://api.jquery.com/event.timeStamp/ }\` * @since 1.2.6 * @example ​ ````Display the time since the click handler last executed. ```html event.timeStamp demo
Click.
​ ``` */ timeStamp: number; /** * Describes the nature of the event. * @see \`{@link https://api.jquery.com/event.type/ }\` * @since 1.0 * @example ​ ````On all anchor clicks, alert the event type. ```javascript $( "a" ).click(function( event ) { alert( event.type ); // "click" }); ``` */ type: string; /** * Returns whether event.preventDefault() was ever called on this event object. * @see \`{@link https://api.jquery.com/event.isDefaultPrevented/ }\` * @since 1.3 * @example ​ ````Checks whether event.preventDefault() was called. ```javascript $( "a" ).click(function( event ) { alert( event.isDefaultPrevented() ); // false event.preventDefault(); alert( event.isDefaultPrevented() ); // true }); ``` */ isDefaultPrevented(): boolean; /** * Returns whether event.stopImmediatePropagation() was ever called on this event object. * @see \`{@link https://api.jquery.com/event.isImmediatePropagationStopped/ }\` * @since 1.3 * @example ​ ````Checks whether event.stopImmediatePropagation() was called. ```html event.isImmediatePropagationStopped demo
​ ``` */ isImmediatePropagationStopped(): boolean; /** * Returns whether event.stopPropagation() was ever called on this event object. * @see \`{@link https://api.jquery.com/event.isPropagationStopped/ }\` * @since 1.3 * @example ​ ````Checks whether event.stopPropagation() was called ```html event.isPropagationStopped demo
​ ``` */ isPropagationStopped(): boolean; /** * If this method is called, the default action of the event will not be triggered. * @see \`{@link https://api.jquery.com/event.preventDefault/ }\` * @since 1.0 * @example ​ ````Cancel the default action (navigation) of the click. ```html event.preventDefault demo default click action is prevented
​ ``` */ preventDefault(): void; /** * Keeps the rest of the handlers from being executed and prevents the event from bubbling up the DOM tree. * @see \`{@link https://api.jquery.com/event.stopImmediatePropagation/ }\` * @since 1.3 * @example ​ ````Prevents other event handlers from being called. ```html event.stopImmediatePropagation demo

paragraph

division
​ ``` */ stopImmediatePropagation(): void; /** * Prevents the event from bubbling up the DOM tree, preventing any parent handlers from being notified of the event. * @see \`{@link https://api.jquery.com/event.stopPropagation/ }\` * @since 1.0 * @example ​ ````Kill the bubbling on the click event. ```javascript $( "p" ).click(function( event ) { event.stopPropagation(); // Do something }); ``` */ stopPropagation(): void; } // #endregion /** * Base type for jQuery events that have been triggered (including events triggered on plain objects). */ interface TriggeredEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends Event { /** * The current DOM element within the event bubbling phase. * @see \`{@link https://api.jquery.com/event.currentTarget/ }\` * @since 1.3 * @example ​ ````Alert that currentTarget matches the `this` keyword. ```javascript $( "p" ).click(function( event ) { alert( event.currentTarget === this ); // true }); ``` */ currentTarget: TCurrentTarget; /** * The element where the currently-called jQuery event handler was attached. * @see \`{@link https://api.jquery.com/event.delegateTarget/ }\` * @since 1.7 * @example ​ ````When a button in any box class is clicked, change the box's background color to red. ```javascript $( ".box" ).on( "click", "button", function( event ) { $( event.delegateTarget ).css( "background-color", "red" ); }); ``` */ delegateTarget: TDelegateTarget; /** * The DOM element that initiated the event. * @see \`{@link https://api.jquery.com/event.target/ }\` * @since 1.0 * @example ​ ````Display the tag's name on click ```html event.target demo

click

​ ``` * @example ​ ````Implements a simple event delegation: The click handler is added to an unordered list, and the children of its li children are hidden. Clicking one of the li children toggles (see toggle()) their children. ```html event.target demo
  • item 1
    • sub item 1-a
    • sub item 1-b
  • item 2
    • sub item 2-a
    • sub item 2-b
​ ``` */ target: TTarget; /** * An optional object of data passed to an event method when the current executing handler is bound. * @see \`{@link https://api.jquery.com/event.data/ }\` * @since 1.1 * @example ​ ````Within a for loop, pass the value of i to the .on() method so that the current iteration's value is preserved. ```html event.data demo
​ ``` */ data: TData; /** * The namespace specified when the event was triggered. * @see \`{@link https://api.jquery.com/event.namespace/ }\` * @since 1.4.3 * @example ​ ````Determine the event namespace used. ```html event.namespace demo

​ ``` */ namespace?: string | undefined; originalEvent?: _Event | undefined; /** * The last value returned by an event handler that was triggered by this event, unless the value was undefined. * @see \`{@link https://api.jquery.com/event.result/ }\` * @since 1.3 * @example ​ ````Display previous handler's return value ```html event.result demo

​ ``` */ result?: any; } // region Event // #region Event interface EventBase< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends TriggeredEvent { /** * The other DOM element involved in the event, if any. * @see \`{@link https://api.jquery.com/event.relatedTarget/ }\` * @since 1.1.4 * @example ​ ````On mouseout of anchors, alert the element type being entered. ```javascript $( "a" ).mouseout(function( event ) { alert( event.relatedTarget.nodeName ); // "DIV" }); ``` */ relatedTarget?: undefined; // Event bubbles: boolean; cancelable: boolean; eventPhase: number; // UIEvent detail: undefined; view: undefined; // MouseEvent button: undefined; buttons: undefined; clientX: undefined; clientY: undefined; offsetX: undefined; offsetY: undefined; /** * The mouse position relative to the left edge of the document. * @see \`{@link https://api.jquery.com/event.pageX/ }\` * @since 1.0.4 * @example ​ ````Show the mouse position relative to the left and top edges of the document (within this iframe). ```html event.pageX demo
​ ``` */ pageX: undefined; /** * The mouse position relative to the top edge of the document. * @see \`{@link https://api.jquery.com/event.pageY/ }\` * @since 1.0.4 * @example ​ ````Show the mouse position relative to the left and top edges of the document (within this iframe). ```html event.pageY demo
​ ``` */ pageY: undefined; screenX: undefined; screenY: undefined; /** @deprecated */ toElement: undefined; // PointerEvent pointerId: undefined; pointerType: undefined; // KeyboardEvent /** @deprecated */ char: undefined; /** @deprecated */ charCode: undefined; key: undefined; /** @deprecated */ keyCode: undefined; // TouchEvent changedTouches: undefined; targetTouches: undefined; touches: undefined; // MouseEvent, KeyboardEvent /** * For key or mouse events, this property indicates the specific key or button that was pressed. * @see \`{@link https://api.jquery.com/event.which/ }\` * @since 1.1.3 * @deprecated ​ Deprecated since 3.3. See \`{@link https://github.com/jquery/api.jquery.com/issues/821 }\`. * @example ​ ````Log which key was depressed. ```html event.which demo
​ ``` * @example ​ ````Log which mouse button was depressed. ```html event.which demo
​ ``` */ which: undefined; // MouseEvent, KeyboardEvent, TouchEvent altKey: undefined; ctrlKey: undefined; /** * Indicates whether the META key was pressed when the event fired. * @see \`{@link https://api.jquery.com/event.metaKey/ }\` * @since 1.0.4 * @example ​ ````Determine whether the META key was pressed when the event fired. ```html event.metaKey demo
​ ``` */ metaKey: undefined; shiftKey: undefined; originalEvent?: _Event | undefined; } interface ChangeEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends EventBase { type: 'change'; } interface ResizeEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends EventBase { type: 'resize'; } interface ScrollEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends EventBase { type: 'scroll'; } interface SelectEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends EventBase { type: 'select'; } interface SubmitEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends EventBase { type: 'submit'; } // #endregion // region UIEvent // #region UIEvent interface UIEventBase< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends TriggeredEvent { // Event bubbles: boolean; cancelable: boolean; eventPhase: number; // UIEvent detail: number; view: Window; originalEvent?: _UIEvent | undefined; } // region MouseEvent // #region MouseEvent interface MouseEventBase< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends UIEventBase { /** * The other DOM element involved in the event, if any. * @see \`{@link https://api.jquery.com/event.relatedTarget/ }\` * @since 1.1.4 * @example ​ ````On mouseout of anchors, alert the element type being entered. ```javascript $( "a" ).mouseout(function( event ) { alert( event.relatedTarget.nodeName ); // "DIV" }); ``` */ relatedTarget?: EventTarget | null | undefined; // MouseEvent button: number; buttons: number; clientX: number; clientY: number; offsetX: number; offsetY: number; /** * The mouse position relative to the left edge of the document. * @see \`{@link https://api.jquery.com/event.pageX/ }\` * @since 1.0.4 * @example ​ ````Show the mouse position relative to the left and top edges of the document (within this iframe). ```html event.pageX demo
​ ``` */ pageX: number; /** * The mouse position relative to the top edge of the document. * @see \`{@link https://api.jquery.com/event.pageY/ }\` * @since 1.0.4 * @example ​ ````Show the mouse position relative to the left and top edges of the document (within this iframe). ```html event.pageY demo
​ ``` */ pageY: number; screenX: number; screenY: number; /** @deprecated */ toElement: Element; // PointerEvent pointerId: undefined; pointerType: undefined; // KeyboardEvent /** @deprecated */ char: undefined; /** @deprecated */ charCode: undefined; key: undefined; /** @deprecated */ keyCode: undefined; // TouchEvent changedTouches: undefined; targetTouches: undefined; touches: undefined; // MouseEvent, KeyboardEvent /** * For key or mouse events, this property indicates the specific key or button that was pressed. * @see \`{@link https://api.jquery.com/event.which/ }\` * @since 1.1.3 * @deprecated ​ Deprecated since 3.3. See \`{@link https://github.com/jquery/api.jquery.com/issues/821 }\`. * @example ​ ````Log which key was depressed. ```html event.which demo
​ ``` * @example ​ ````Log which mouse button was depressed. ```html event.which demo
​ ``` */ which: number; // MouseEvent, KeyboardEvent, TouchEvent altKey: boolean; ctrlKey: boolean; /** * Indicates whether the META key was pressed when the event fired. * @see \`{@link https://api.jquery.com/event.metaKey/ }\` * @since 1.0.4 * @example ​ ````Determine whether the META key was pressed when the event fired. ```html event.metaKey demo
​ ``` */ metaKey: boolean; shiftKey: boolean; originalEvent?: _MouseEvent | undefined; } interface ClickEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends MouseEventBase { /** * The other DOM element involved in the event, if any. * @see \`{@link https://api.jquery.com/event.relatedTarget/ }\` * @since 1.1.4 * @example ​ ````On mouseout of anchors, alert the element type being entered. ```javascript $( "a" ).mouseout(function( event ) { alert( event.relatedTarget.nodeName ); // "DIV" }); ``` */ relatedTarget?: null | undefined; type: 'click'; } interface ContextMenuEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends MouseEventBase { /** * The other DOM element involved in the event, if any. * @see \`{@link https://api.jquery.com/event.relatedTarget/ }\` * @since 1.1.4 * @example ​ ````On mouseout of anchors, alert the element type being entered. ```javascript $( "a" ).mouseout(function( event ) { alert( event.relatedTarget.nodeName ); // "DIV" }); ``` */ relatedTarget?: null | undefined; type: 'contextmenu'; } interface DoubleClickEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends MouseEventBase { /** * The other DOM element involved in the event, if any. * @see \`{@link https://api.jquery.com/event.relatedTarget/ }\` * @since 1.1.4 * @example ​ ````On mouseout of anchors, alert the element type being entered. ```javascript $( "a" ).mouseout(function( event ) { alert( event.relatedTarget.nodeName ); // "DIV" }); ``` */ relatedTarget?: null | undefined; type: 'dblclick'; } interface MouseDownEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends MouseEventBase { /** * The other DOM element involved in the event, if any. * @see \`{@link https://api.jquery.com/event.relatedTarget/ }\` * @since 1.1.4 * @example ​ ````On mouseout of anchors, alert the element type being entered. ```javascript $( "a" ).mouseout(function( event ) { alert( event.relatedTarget.nodeName ); // "DIV" }); ``` */ relatedTarget?: null | undefined; type: 'mousedown'; } interface MouseEnterEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends MouseEventBase { // Special handling by jQuery. type: 'mouseover'; } interface MouseLeaveEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends MouseEventBase { // Special handling by jQuery. type: 'mouseout'; } interface MouseMoveEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends MouseEventBase { /** * The other DOM element involved in the event, if any. * @see \`{@link https://api.jquery.com/event.relatedTarget/ }\` * @since 1.1.4 * @example ​ ````On mouseout of anchors, alert the element type being entered. ```javascript $( "a" ).mouseout(function( event ) { alert( event.relatedTarget.nodeName ); // "DIV" }); ``` */ relatedTarget?: null | undefined; type: 'mousemove'; } interface MouseOutEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends MouseEventBase { type: 'mouseout'; } interface MouseOverEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends MouseEventBase { type: 'mouseover'; } interface MouseUpEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends MouseEventBase { /** * The other DOM element involved in the event, if any. * @see \`{@link https://api.jquery.com/event.relatedTarget/ }\` * @since 1.1.4 * @example ​ ````On mouseout of anchors, alert the element type being entered. ```javascript $( "a" ).mouseout(function( event ) { alert( event.relatedTarget.nodeName ); // "DIV" }); ``` */ relatedTarget?: null | undefined; type: 'mouseup'; } // region DragEvent // #region DragEvent interface DragEventBase< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends UIEventBase { originalEvent?: _DragEvent | undefined; } interface DragEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends DragEventBase { type: 'drag'; } interface DragEndEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends DragEventBase { type: 'dragend'; } interface DragEnterEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends DragEventBase { type: 'dragenter'; } interface DragExitEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends DragEventBase { type: 'dragexit'; } interface DragLeaveEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends DragEventBase { type: 'dragleave'; } interface DragOverEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends DragEventBase { type: 'dragover'; } interface DragStartEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends DragEventBase { type: 'dragstart'; } interface DropEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends DragEventBase { type: 'drop'; } // #endregion // #endregion // region KeyboardEvent // #region KeyboardEvent interface KeyboardEventBase< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends UIEventBase { /** * The other DOM element involved in the event, if any. * @see \`{@link https://api.jquery.com/event.relatedTarget/ }\` * @since 1.1.4 * @example ​ ````On mouseout of anchors, alert the element type being entered. ```javascript $( "a" ).mouseout(function( event ) { alert( event.relatedTarget.nodeName ); // "DIV" }); ``` */ relatedTarget?: undefined; // MouseEvent button: undefined; buttons: undefined; clientX: undefined; clientY: undefined; offsetX: undefined; offsetY: undefined; /** * The mouse position relative to the left edge of the document. * @see \`{@link https://api.jquery.com/event.pageX/ }\` * @since 1.0.4 * @example ​ ````Show the mouse position relative to the left and top edges of the document (within this iframe). ```html event.pageX demo
​ ``` */ pageX: undefined; /** * The mouse position relative to the top edge of the document. * @see \`{@link https://api.jquery.com/event.pageY/ }\` * @since 1.0.4 * @example ​ ````Show the mouse position relative to the left and top edges of the document (within this iframe). ```html event.pageY demo
​ ``` */ pageY: undefined; screenX: undefined; screenY: undefined; /** @deprecated */ toElement: undefined; // PointerEvent pointerId: undefined; pointerType: undefined; // KeyboardEvent /** @deprecated */ char: string | undefined; /** @deprecated */ charCode: number; code: string; key: string; /** @deprecated */ keyCode: number; // TouchEvent changedTouches: undefined; targetTouches: undefined; touches: undefined; // MouseEvent, KeyboardEvent /** * For key or mouse events, this property indicates the specific key or button that was pressed. * @see \`{@link https://api.jquery.com/event.which/ }\` * @since 1.1.3 * @deprecated ​ Deprecated since 3.3. See \`{@link https://github.com/jquery/api.jquery.com/issues/821 }\`. * @example ​ ````Log which key was depressed. ```html event.which demo
​ ``` * @example ​ ````Log which mouse button was depressed. ```html event.which demo
​ ``` */ which: number; // MouseEvent, KeyboardEvent, TouchEvent altKey: boolean; ctrlKey: boolean; /** * Indicates whether the META key was pressed when the event fired. * @see \`{@link https://api.jquery.com/event.metaKey/ }\` * @since 1.0.4 * @example ​ ````Determine whether the META key was pressed when the event fired. ```html event.metaKey demo
​ ``` */ metaKey: boolean; shiftKey: boolean; originalEvent?: _KeyboardEvent | undefined; } interface KeyDownEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends KeyboardEventBase { type: 'keydown'; } interface KeyPressEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends KeyboardEventBase { type: 'keypress'; } interface KeyUpEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends KeyboardEventBase { type: 'keyup'; } // #endregion // region TouchEvent // #region TouchEvent interface TouchEventBase< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends UIEventBase { /** * The other DOM element involved in the event, if any. * @see \`{@link https://api.jquery.com/event.relatedTarget/ }\` * @since 1.1.4 * @example ​ ````On mouseout of anchors, alert the element type being entered. ```javascript $( "a" ).mouseout(function( event ) { alert( event.relatedTarget.nodeName ); // "DIV" }); ``` */ relatedTarget?: undefined; // MouseEvent button: undefined; buttons: undefined; clientX: undefined; clientY: undefined; offsetX: undefined; offsetY: undefined; /** * The mouse position relative to the left edge of the document. * @see \`{@link https://api.jquery.com/event.pageX/ }\` * @since 1.0.4 * @example ​ ````Show the mouse position relative to the left and top edges of the document (within this iframe). ```html event.pageX demo
​ ``` */ pageX: undefined; /** * The mouse position relative to the top edge of the document. * @see \`{@link https://api.jquery.com/event.pageY/ }\` * @since 1.0.4 * @example ​ ````Show the mouse position relative to the left and top edges of the document (within this iframe). ```html event.pageY demo
​ ``` */ pageY: undefined; screenX: undefined; screenY: undefined; /** @deprecated */ toElement: undefined; // PointerEvent pointerId: undefined; pointerType: undefined; // KeyboardEvent /** @deprecated */ char: undefined; /** @deprecated */ charCode: undefined; key: undefined; /** @deprecated */ keyCode: undefined; // TouchEvent changedTouches: TouchList; targetTouches: TouchList; touches: TouchList; // MouseEvent, KeyboardEvent /** * For key or mouse events, this property indicates the specific key or button that was pressed. * @see \`{@link https://api.jquery.com/event.which/ }\` * @since 1.1.3 * @deprecated ​ Deprecated since 3.3. See \`{@link https://github.com/jquery/api.jquery.com/issues/821 }\`. * @example ​ ````Log which key was depressed. ```html event.which demo
​ ``` * @example ​ ````Log which mouse button was depressed. ```html event.which demo
​ ``` */ which: undefined; // MouseEvent, KeyboardEvent, TouchEvent altKey: boolean; ctrlKey: boolean; /** * Indicates whether the META key was pressed when the event fired. * @see \`{@link https://api.jquery.com/event.metaKey/ }\` * @since 1.0.4 * @example ​ ````Determine whether the META key was pressed when the event fired. ```html event.metaKey demo
​ ``` */ metaKey: boolean; shiftKey: boolean; originalEvent?: _TouchEvent | undefined; } interface TouchCancelEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends TouchEventBase { type: 'touchcancel'; } interface TouchEndEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends TouchEventBase { type: 'touchend'; } interface TouchMoveEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends TouchEventBase { type: 'touchmove'; } interface TouchStartEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends TouchEventBase { type: 'touchstart'; } // #endregion // region FocusEvent // #region FocusEvent interface FocusEventBase< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends UIEventBase { /** * The other DOM element involved in the event, if any. * @see \`{@link https://api.jquery.com/event.relatedTarget/ }\` * @since 1.1.4 * @example ​ ````On mouseout of anchors, alert the element type being entered. ```javascript $( "a" ).mouseout(function( event ) { alert( event.relatedTarget.nodeName ); // "DIV" }); ``` */ relatedTarget?: EventTarget | null | undefined; // MouseEvent button: undefined; buttons: undefined; clientX: undefined; clientY: undefined; offsetX: undefined; offsetY: undefined; /** * The mouse position relative to the left edge of the document. * @see \`{@link https://api.jquery.com/event.pageX/ }\` * @since 1.0.4 * @example ​ ````Show the mouse position relative to the left and top edges of the document (within this iframe). ```html event.pageX demo
​ ``` */ pageX: undefined; /** * The mouse position relative to the top edge of the document. * @see \`{@link https://api.jquery.com/event.pageY/ }\` * @since 1.0.4 * @example ​ ````Show the mouse position relative to the left and top edges of the document (within this iframe). ```html event.pageY demo
​ ``` */ pageY: undefined; screenX: undefined; screenY: undefined; /** @deprecated */ toElement: undefined; // PointerEvent pointerId: undefined; pointerType: undefined; // KeyboardEvent /** @deprecated */ char: undefined; /** @deprecated */ charCode: undefined; key: undefined; /** @deprecated */ keyCode: undefined; // TouchEvent changedTouches: undefined; targetTouches: undefined; touches: undefined; // MouseEvent, KeyboardEvent /** * For key or mouse events, this property indicates the specific key or button that was pressed. * @see \`{@link https://api.jquery.com/event.which/ }\` * @since 1.1.3 * @deprecated ​ Deprecated since 3.3. See \`{@link https://github.com/jquery/api.jquery.com/issues/821 }\`. * @example ​ ````Log which key was depressed. ```html event.which demo
​ ``` * @example ​ ````Log which mouse button was depressed. ```html event.which demo
​ ``` */ which: undefined; // MouseEvent, KeyboardEvent, TouchEvent altKey: undefined; ctrlKey: undefined; /** * Indicates whether the META key was pressed when the event fired. * @see \`{@link https://api.jquery.com/event.metaKey/ }\` * @since 1.0.4 * @example ​ ````Determine whether the META key was pressed when the event fired. ```html event.metaKey demo
​ ``` */ metaKey: undefined; shiftKey: undefined; originalEvent?: _FocusEvent | undefined; } interface BlurEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends FocusEventBase { type: 'blur'; } interface FocusEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends FocusEventBase { type: 'focus'; } interface FocusInEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends FocusEventBase { type: 'focusin'; } interface FocusOutEvent< TDelegateTarget = any, TData = any, TCurrentTarget = any, TTarget = any > extends FocusEventBase { type: 'focusout'; } // #endregion // #endregion interface TypeToTriggeredEventMap< TDelegateTarget, TData, TCurrentTarget, TTarget > { // Event change: ChangeEvent; resize: ResizeEvent; scroll: ScrollEvent; select: SelectEvent; submit: SubmitEvent; // UIEvent // MouseEvent click: ClickEvent; contextmenu: ContextMenuEvent; dblclick: DoubleClickEvent; mousedown: MouseDownEvent; mouseenter: MouseEnterEvent; mouseleave: MouseLeaveEvent; mousemove: MouseMoveEvent; mouseout: MouseOutEvent; mouseover: MouseOverEvent; mouseup: MouseUpEvent; // DragEvent drag: DragEvent; dragend: DragEndEvent; dragenter: DragEnterEvent; dragexit: DragExitEvent; dragleave: DragLeaveEvent; dragover: DragOverEvent; dragstart: DragStartEvent; drop: DropEvent; // KeyboardEvent keydown: KeyDownEvent; keypress: KeyPressEvent; keyup: KeyUpEvent; // TouchEvent touchcancel: TouchCancelEvent; touchend: TouchEndEvent; touchmove: TouchMoveEvent; touchstart: TouchStartEvent; // FocusEvent blur: BlurEvent; focus: FocusEvent; focusin: FocusInEvent; focusout: FocusOutEvent; [type: string]: TriggeredEvent; } // Extra parameters can be passed from trigger() type EventHandlerBase = (this: TContext, t: T, ...args: any[]) => any; type EventHandler< TCurrentTarget, TData = undefined > = EventHandlerBase>; type TypeEventHandler< TDelegateTarget, TData, TCurrentTarget, TTarget, TType extends keyof TypeToTriggeredEventMap > = EventHandlerBase[TType]>; interface TypeEventHandlers< TDelegateTarget, TData, TCurrentTarget, TTarget > extends _TypeEventHandlers { // No idea why it's necessary to include `object` in the union but otherwise TypeScript complains that // derived types of Event are not assignable to Event. [type: string]: TypeEventHandler | false | undefined | object; } type _TypeEventHandlers< TDelegateTarget, TData, TCurrentTarget, TTarget > = { [TType in keyof TypeToTriggeredEventMap]?: TypeEventHandler | false | object; }; // region Event extensions // #region Event extensions interface EventExtensions { /** * The jQuery special event hooks are a set of per-event-name functions and properties that allow code to control the behavior of event processing within jQuery. The mechanism is similar to `fixHooks` in that the special event information is stored in `jQuery.event.special.NAME`, where `NAME` is the name of the special event. Event names are case sensitive. * * As with `fixHooks`, the special event hooks design assumes it will be very rare that two unrelated pieces of code want to process the same event name. Special event authors who need to modify events with existing hooks will need to take precautions to avoid introducing unwanted side-effects by clobbering those hooks. * @see \`{@link https://learn.jquery.com/events/event-extensions/#special-event-hooks }\` */ special: SpecialEventHooks; } // region Special event hooks // #region Special event hooks /** * The jQuery special event hooks are a set of per-event-name functions and properties that allow code to control the behavior of event processing within jQuery. The mechanism is similar to `fixHooks` in that the special event information is stored in `jQuery.event.special.NAME`, where `NAME` is the name of the special event. Event names are case sensitive. * * As with `fixHooks`, the special event hooks design assumes it will be very rare that two unrelated pieces of code want to process the same event name. Special event authors who need to modify events with existing hooks will need to take precautions to avoid introducing unwanted side-effects by clobbering those hooks. * @see \`{@link https://learn.jquery.com/events/event-extensions/#special-event-hooks }\` */ // Workaround for TypeScript 2.3 which does not have support for weak types handling. type SpecialEventHook = { /** * Indicates whether this event type should be bubbled when the `.trigger()` method is called; by default it is `false`, meaning that a triggered event will bubble to the element's parents up to the document (if attached to a document) and then to the window. Note that defining `noBubble` on an event will effectively prevent that event from being used for delegated events with `.trigger()`. * @see \`{@link https://learn.jquery.com/events/event-extensions/#nobubble-boolean }\` */ noBubble: boolean; } | { /** * When defined, these string properties specify that a special event should be handled like another event type until the event is delivered. The `bindType` is used if the event is attached directly, and the `delegateType` is used for delegated events. These types are generally DOM event types, and _should not_ be a special event themselves. * @see \`{@link https://learn.jquery.com/events/event-extensions/#bindtype-string-delegatetype-string }\` */ bindType: string; } | { /** * When defined, these string properties specify that a special event should be handled like another event type until the event is delivered. The `bindType` is used if the event is attached directly, and the `delegateType` is used for delegated events. These types are generally DOM event types, and _should not_ be a special event themselves. * @see \`{@link https://learn.jquery.com/events/event-extensions/#bindtype-string-delegatetype-string }\` */ delegateType: string; } | { /** * The setup hook is called the first time an event of a particular type is attached to an element; this provides the hook an opportunity to do processing that will apply to all events of this type on this element. The `this` keyword will be a reference to the element where the event is being attached and `eventHandle` is jQuery's event handler function. In most cases the `namespaces` argument should not be used, since it only represents the namespaces of the _first_ event being attached; subsequent events may not have this same namespaces. * * This hook can perform whatever processing it desires, including attaching its own event handlers to the element or to other elements and recording setup information on the element using the `jQuery.data()` method. If the setup hook wants jQuery to add a browser event (via `addEventListener` or `attachEvent`, depending on browser) it should return `false`. In all other cases, jQuery will not add the browser event, but will continue all its other bookkeeping for the event. This would be appropriate, for example, if the event was never fired by the browser but invoked by `.trigger()`. To attach the jQuery event handler in the setup hook, use the `eventHandle` argument. * @see \`{@link https://learn.jquery.com/events/event-extensions/#setup-function-data-object-namespaces-eventhandle-function }\` */ setup(this: TTarget, data: TData, namespaces: string, eventHandle: EventHandler): void | false; } | { /** * The teardown hook is called when the final event of a particular type is removed from an element. The `this` keyword will be a reference to the element where the event is being cleaned up. This hook should return `false` if it wants jQuery to remove the event from the browser's event system (via `removeEventListener` or `detachEvent`). In most cases, the setup and teardown hooks should return the same value. * * If the setup hook attached event handlers or added data to an element through a mechanism such as `jQuery.data()`, the teardown hook should reverse the process and remove them. jQuery will generally remove the data and events when an element is totally removed from the document, but failing to remove data or events on teardown will cause a memory leak if the element stays in the document. * @see \`{@link https://learn.jquery.com/events/event-extensions/#teardown-function }\` */ teardown(this: TTarget): void | false; } | { /** * Each time an event handler is added to an element through an API such as `.on()`, jQuery calls this hook. The `this` keyword will be the element to which the event handler is being added, and the `handleObj` argument is as described in the section above. The return value of this hook is ignored. * @see \`{@link https://learn.jquery.com/events/event-extensions/#add-function-handleobj }\` */ add(this: TTarget, handleObj: HandleObject): void; } | { /** * When an event handler is removed from an element using an API such as `.off()`, this hook is called. The `this` keyword will be the element where the handler is being removed, and the `handleObj` argument is as described in the section above. The return value of this hook is ignored. * @see \`{@link https://learn.jquery.com/events/event-extensions/#remove-function-handleobj }\` */ remove(this: TTarget, handleObj: HandleObject): void; } | { /** * Called when the `.trigger()` or `.triggerHandler()` methods are used to trigger an event for the special type from code, as opposed to events that originate from within the browser. The `this` keyword will be the element being triggered, and the event argument will be a `jQuery.Event` object constructed from the caller's input. At minimum, the event type, data, namespace, and target properties are set on the event. The data argument represents additional data passed by `.trigger()` if present. * * The trigger hook is called early in the process of triggering an event, just after the `jQuery.Event` object is constructed and before any handlers have been called. It can process the triggered event in any way, for example by calling `event.stopPropagation()` or `event.preventDefault()` before returning. If the hook returns `false`, jQuery does not perform any further event triggering actions and returns immediately. Otherwise, it performs the normal trigger processing, calling any event handlers for the element and bubbling the event (unless propagation is stopped in advance or `noBubble` was specified for the special event) to call event handlers attached to parent elements. * @see \`{@link https://learn.jquery.com/events/event-extensions/#trigger-function-event-jquery-event-data-object }\` */ trigger(this: TTarget, event: Event, data: TData): void | false; } | { /** * When the `.trigger()` method finishes running all the event handlers for an event, it also looks for and runs any method on the target object by the same name unless of the handlers called `event.preventDefault()`. So, `.trigger( "submit" )` will execute the `submit()` method on the element if one exists. When a `_default` hook is specified, the hook is called just prior to checking for and executing the element's default method. If this hook returns the value `false` the element's default method will be called; otherwise it is not. * @see \`{@link https://learn.jquery.com/events/event-extensions/#_default-function-event-jquery-event-data-object }\` */ _default(event: TriggeredEvent, data: TData): void | false; } | { /** * jQuery calls a handle hook when the event has occurred and jQuery would normally call the user's event handler specified by `.on()` or another event binding method. If the hook exists, jQuery calls it _instead_ of that event handler, passing it the event and any data passed from `.trigger()` if it was not a native event. The `this` keyword is the DOM element being handled, and `event.handleObj` property has the detailed event information. * * Based in the information it has, the handle hook should decide whether to call the original handler function which is in `event.handleObj.handler`. It can modify information in the event object before calling the original handler, but _must restore_ that data before returning or subsequent unrelated event handlers may act unpredictably. In most cases, the handle hook should return the result of the original handler, but that is at the discretion of the hook. The handle hook is unique in that it is the only special event function hook that is called under its original special event name when the type is mapped using `bindType` and `delegateType`. For that reason, it is almost always an error to have anything other than a handle hook present if the special event defines a `bindType` and `delegateType`, since those other hooks will never be called. * @see \`{@link https://learn.jquery.com/events/event-extensions/#handle-function-event-jquery-event-data-object }\` */ handle(this: TTarget, event: TriggeredEvent & { handleObj: HandleObject; }, ...data: TData[]): void; } | { preDispatch(this: TTarget, event: Event): false | void; } | { postDispatch(this: TTarget, event: Event): void; } | { [key: string]: any; }; interface SpecialEventHooks { [event: string]: SpecialEventHook; } /** * Many of the special event hook functions below are passed a `handleObj` object that provides more information about the event, how it was attached, and its current state. This object and its contents should be treated as read-only data, and only the properties below are documented for use by special event handlers. * @see \`{@link https://learn.jquery.com/events/event-extensions/#the-handleobj-object }\` */ interface HandleObject { /** * The type of event, such as `"click"`. When special event mapping is used via `bindType` or `delegateType`, this will be the mapped type. */ readonly type: string; /** * The original type name regardless of whether it was mapped via `bindType` or `delegateType`. So when a "pushy" event is mapped to "click" its `origType` would be "pushy". */ readonly origType: string; /** * Namespace(s), if any, provided when the event was attached, such as `"myPlugin"`. When multiple namespaces are given, they are separated by periods and sorted in ascending alphabetical order. If no namespaces are provided, this property is an empty string. */ readonly namespace: string; /** * For delegated events, this is the selector used to filter descendant elements and determine if the handler should be called. For directly bound events, this property is `null`. */ readonly selector: string | undefined | null; /** * The data, if any, passed to jQuery during event binding, e.g. `{ myData: 42 }`. If the data argument was omitted or `undefined`, this property is `undefined` as well. */ readonly data: TData; /** * Event handler function passed to jQuery during event binding. If `false` was passed during event binding, the handler refers to a single shared function that simply returns `false`. */ readonly handler: EventHandler; } // #endregion // #endregion // #endregion interface NameValuePair { name: string; value: string; } // region Coordinates // #region Coordinates interface Coordinates { left: number; top: number; } // Workaround for TypeScript 2.3 which does not have support for weak types handling. type CoordinatesPartial = Pick | Pick | { [key: string]: never; }; // #endregion // region Val hooks // #region Val hooks // Workaround for TypeScript 2.3 which does not have support for weak types handling. type ValHook = { get(elem: TElement): any; } | { set(elem: TElement, value: any): any; } | { [key: string]: never; }; interface ValHooks { // Set to HTMLElement to minimize breaks but should probably be Element. [nodeName: string]: ValHook; } // #endregion type _Falsy = false | null | undefined | 0 | '' | typeof document.all; } declare const jQuery: JQueryStatic; declare const $: JQueryStatic; type _Event = Event; type _UIEvent = UIEvent; type _MouseEvent = MouseEvent; type _DragEvent = DragEvent; type _KeyboardEvent = KeyboardEvent; type _TouchEvent = TouchEvent; type _FocusEvent = FocusEvent; // region ES5 compatibility // #region ES5 compatibility // Forward declaration of `Iterable`. // tslint:disable-next-line:no-empty-interface interface Iterable { } interface SymbolConstructor { /** * A String value that is used in the creation of the default string description of an object. * Called by the built-in method Object.prototype.toString. */ readonly toStringTag: symbol; } declare var Symbol: SymbolConstructor; // #endregion