google-closure-compiler 20161024.3.0 → 20170409.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/README.md +327 -0
  2. package/compiler.jar +0 -0
  3. package/contrib/externs/angular-1.3-resource.js +6 -0
  4. package/contrib/externs/angular-1.3.js +4 -3
  5. package/contrib/externs/angular-1.4-resource.js +6 -0
  6. package/contrib/externs/angular-1.4.js +2 -2
  7. package/contrib/externs/angular-1.5-q_templated.js +19 -1
  8. package/contrib/externs/angular-1.5-resource.js +6 -0
  9. package/contrib/externs/angular-1.5.js +44 -9
  10. package/contrib/externs/angular-1.6-http-promise_templated.js +61 -0
  11. package/contrib/externs/angular-1.6-mocks.js +267 -0
  12. package/contrib/externs/angular-1.6-q_templated.js +194 -0
  13. package/contrib/externs/angular-1.6-resource.js +332 -0
  14. package/contrib/externs/{w3c_css.js → angular-1.6-test.js} +8 -6
  15. package/contrib/externs/angular-1.6.js +2646 -0
  16. package/contrib/externs/angular-cache-4.6.js +316 -0
  17. package/contrib/externs/angular-material-1.1.js +92 -33
  18. package/contrib/externs/angular-material.js +36 -5
  19. package/contrib/externs/chai-3.5.js +101 -2
  20. package/contrib/externs/chrome_extensions.js +267 -95
  21. package/contrib/externs/jasmine-2.0.js +23 -3
  22. package/contrib/externs/jquery-1.4.4.js +1 -1
  23. package/contrib/externs/jquery-1.5.js +1 -1
  24. package/contrib/externs/jquery-1.6.js +1 -1
  25. package/contrib/externs/jquery-3.0.js +2037 -0
  26. package/contrib/externs/jquery-3.1.js +2045 -0
  27. package/contrib/externs/maps/google_maps_api_v3.js +306 -263
  28. package/contrib/externs/maps/google_maps_api_v3_27.js +6732 -0
  29. package/contrib/externs/maps/google_maps_api_v3_28.js +6637 -0
  30. package/contrib/externs/maps/google_maps_api_v3_exp.js +41 -106
  31. package/contrib/externs/mocha-2.5.js +65 -14
  32. package/contrib/externs/polymer-1.0.js +43 -5
  33. package/contrib/externs/safari.js +58 -0
  34. package/contrib/externs/sinon-1.17.js +719 -10
  35. package/contrib/externs/sinon-chai-2.7.js +78 -0
  36. package/contrib/externs/w3c_eventsource.js +6 -17
  37. package/contrib/externs/web_component_tester-4.2.js +6 -0
  38. package/contrib/nodejs/crypto.js +6 -6
  39. package/lib/gulp/index.js +2 -2
  40. package/lib/node/closure-compiler.js +3 -1
  41. package/package.json +8 -9
  42. package/contrib/externs/jquery-1.3.2.externs.js +0 -714
  43. package/contrib/externs/w3c_gamepad.js +0 -91
  44. package/contrib/externs/w3c_midi.js +0 -293
  45. package/contrib/externs/w3c_pointer_events.js +0 -105
@@ -0,0 +1,2037 @@
1
+ /*
2
+ * Copyright 2016 The Closure Compiler Authors.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ /**
18
+ * @fileoverview Externs for jQuery 3.0
19
+ *
20
+ * Note that some functions use different return types depending on the number
21
+ * of parameters passed in. In these cases, you may need to annotate the type
22
+ * of the result in your code, so the JSCompiler understands which type you're
23
+ * expecting. For example:
24
+ * <code>var elt = /** @type {Element} * / (foo.get(0));</code>
25
+ *
26
+ * @see http://api.jquery.com/
27
+ * @externs
28
+ */
29
+
30
+ /**
31
+ * @typedef {(Window|Document|Element|Array<Element>|string|jQuery|
32
+ * NodeList)}
33
+ */
34
+ var jQuerySelector;
35
+
36
+ /** @typedef {function(...)|Array<function(...)>} */
37
+ var jQueryCallback;
38
+
39
+ /**
40
+ * @record
41
+ */
42
+ function jQueryAjaxSettings() {};
43
+
44
+ /** @type {(Object<string, string>|undefined)} */
45
+ jQueryAjaxSettings.prototype.accepts;
46
+
47
+ /** @type {(?boolean|undefined)} */
48
+ jQueryAjaxSettings.prototype.async;
49
+
50
+ /** @type {(function(jQuery.jqXHR, (jQueryAjaxSettings|Object<string, *>))|undefined)} */
51
+ jQueryAjaxSettings.prototype.beforeSend;
52
+
53
+ /** @type {(?boolean|undefined)} */
54
+ jQueryAjaxSettings.prototype.cache;
55
+
56
+ /** @type {(function(jQuery.jqXHR, string)|undefined)} */
57
+ jQueryAjaxSettings.prototype.complete;
58
+
59
+ /** @type {(Object<string, RegExp>|undefined)} */
60
+ jQueryAjaxSettings.prototype.contents;
61
+
62
+ /** @type {(?string|boolean|undefined)} */
63
+ jQueryAjaxSettings.prototype.contentType;
64
+
65
+ /** @type {(Object<?, ?>|jQueryAjaxSettings|undefined)} */
66
+ jQueryAjaxSettings.prototype.context;
67
+
68
+ /** @type {(Object<string, Function>|undefined)} */
69
+ jQueryAjaxSettings.prototype.converters;
70
+
71
+ /** @type {(?boolean|undefined)} */
72
+ jQueryAjaxSettings.prototype.crossDomain;
73
+
74
+ /** @type {(Object<?, ?>|?string|Array<?>|undefined)} */
75
+ jQueryAjaxSettings.prototype.data;
76
+
77
+ /** @type {(function(string, string):?|undefined)} */
78
+ jQueryAjaxSettings.prototype.dataFilter;
79
+
80
+ /** @type {(?string|undefined)} */
81
+ jQueryAjaxSettings.prototype.dataType;
82
+
83
+ /** @type {(function(jQuery.jqXHR, string, string)|undefined)} */
84
+ jQueryAjaxSettings.prototype.error;
85
+
86
+ /** @type {(?boolean|undefined)} */
87
+ jQueryAjaxSettings.prototype.global;
88
+
89
+ /** @type {(Object<?, ?>|undefined)} */
90
+ jQueryAjaxSettings.prototype.headers;
91
+
92
+ /** @type {(?boolean|undefined)} */
93
+ jQueryAjaxSettings.prototype.ifModified;
94
+
95
+ /** @type {(?boolean|undefined)} */
96
+ jQueryAjaxSettings.prototype.isLocal;
97
+
98
+ /** @type {(?string|undefined)} */
99
+ jQueryAjaxSettings.prototype.jsonp;
100
+
101
+ /** @type {(?string|function()|undefined)} */
102
+ jQueryAjaxSettings.prototype.jsonpCallback;
103
+
104
+ /** @type {(?string|undefined)} */
105
+ jQueryAjaxSettings.prototype.mimeType;
106
+
107
+ /** @type {(?string|undefined)} */
108
+ jQueryAjaxSettings.prototype.password;
109
+
110
+ /** @type {(?boolean|undefined)} */
111
+ jQueryAjaxSettings.prototype.processData;
112
+
113
+ /** @type {(?string|undefined)} */
114
+ jQueryAjaxSettings.prototype.scriptCharset;
115
+
116
+ /** @type {(Object<number, function()>|undefined)} */
117
+ jQueryAjaxSettings.prototype.statusCode;
118
+
119
+ /** @type {(function(?, string, jQuery.jqXHR)|undefined)} */
120
+ jQueryAjaxSettings.prototype.success;
121
+
122
+ /** @type {(?number|undefined)} */
123
+ jQueryAjaxSettings.prototype.timeout;
124
+
125
+ /** @type {(?boolean|undefined)} */
126
+ jQueryAjaxSettings.prototype.traditional;
127
+
128
+ /** @type {(?string|undefined)} */
129
+ jQueryAjaxSettings.prototype.type;
130
+
131
+ /** @type {(?string|undefined)} */
132
+ jQueryAjaxSettings.prototype.url;
133
+
134
+ /** @type {(?string|undefined)} */
135
+ jQueryAjaxSettings.prototype.username;
136
+
137
+ /** @type {(function():(ActiveXObject|XMLHttpRequest)|undefined)} */
138
+ jQueryAjaxSettings.prototype.xhr;
139
+
140
+ /** @type {(Object<?, ?>|undefined)} */
141
+ jQueryAjaxSettings.prototype.xhrFields;
142
+
143
+ /**
144
+ * @record
145
+ * @extends {jQueryAjaxSettings}
146
+ */
147
+ function jQueryAjaxSettingsExtra() {};
148
+
149
+ /** @type {Object<string, boolean>} */
150
+ jQueryAjaxSettingsExtra.prototype.flatOptions;
151
+
152
+ /** @type {Object<string, string>} */
153
+ jQueryAjaxSettingsExtra.prototype.responseFields;
154
+
155
+
156
+ /**
157
+ * @record
158
+ */
159
+ function jQueryAjaxTransport(){};
160
+
161
+ /** @return {undefined} */
162
+ jQueryAjaxTransport.abort = function() {};
163
+
164
+ /**
165
+ * @param {!IObject<string,string>} headers
166
+ * @param {function(number, string, !IObject<string,string>=, string=):undefined} completeCallback
167
+ * @return {undefined}
168
+ */
169
+ jQueryAjaxTransport.send = function(headers, completeCallback) {};
170
+
171
+ /**
172
+ * @constructor
173
+ * @param {(jQuerySelector|Object|function())=} arg1
174
+ * @param {(Element|jQuery|Document|
175
+ * Object<string, (string|function(!jQuery.Event))>)=} arg2
176
+ * @throws {Error} on invalid selector
177
+ * @return {!jQuery}
178
+ * @implements {Iterable}
179
+ */
180
+ function jQuery(arg1, arg2) {};
181
+
182
+ /**
183
+ * @const
184
+ */
185
+ var $ = jQuery;
186
+
187
+ /**
188
+ * @param {jQuerySelector} arg1
189
+ * @param {Element=} context
190
+ * @return {!jQuery}
191
+ * @nosideeffects
192
+ */
193
+ jQuery.prototype.add = function(arg1, context) {};
194
+
195
+ /**
196
+ * @param {jQuerySelector=} arg1
197
+ * @return {!jQuery}
198
+ * @nosideeffects
199
+ */
200
+ jQuery.prototype.addBack = function(arg1) {};
201
+
202
+ /**
203
+ * @param {(string|function(number,String))} arg1
204
+ * @return {!jQuery}
205
+ */
206
+ jQuery.prototype.addClass = function(arg1) {};
207
+
208
+ /**
209
+ * @param {(string|Element|Array<Element>|jQuery|function(this:Element,number,string):(string|!Element|!jQuery))} arg1
210
+ * @param {...(string|Element|Array<Element>|jQuery)} content
211
+ * @return {!jQuery}
212
+ */
213
+ jQuery.prototype.after = function(arg1, content) {};
214
+
215
+ /**
216
+ * @param {(string|jQueryAjaxSettings|Object<string,*>)} arg1
217
+ * @param {(jQueryAjaxSettings|Object<string, *>)=} settings
218
+ * @return {!jQuery.jqXHR}
219
+ */
220
+ jQuery.ajax = function(arg1, settings) {};
221
+
222
+ /**
223
+ * @param {function(!jQuery.Event,XMLHttpRequest,(jQueryAjaxSettings|Object<string, *>))} handler
224
+ * @return {!jQuery}
225
+ */
226
+ jQuery.prototype.ajaxComplete = function(handler) {};
227
+
228
+ /**
229
+ * @param {function(!jQuery.Event,jQuery.jqXHR,(jQueryAjaxSettings|Object<string, *>),*)} handler
230
+ * @return {!jQuery}
231
+ */
232
+ jQuery.prototype.ajaxError = function(handler) {};
233
+
234
+ /**
235
+ * @param {(string|function((jQueryAjaxSettings|Object<string, *>),(jQueryAjaxSettings|Object<string, *>),jQuery.jqXHR))} dataTypes
236
+ * @param {function((jQueryAjaxSettings|Object<string, *>),(jQueryAjaxSettings|Object<string, *>),jQuery.jqXHR)=} handler
237
+ * @return {undefined}
238
+ */
239
+ jQuery.ajaxPrefilter = function(dataTypes, handler) {};
240
+
241
+ /**
242
+ * @param {function(!jQuery.Event,jQuery.jqXHR,(jQueryAjaxSettings|Object<string, *>))} handler
243
+ * @return {!jQuery}
244
+ */
245
+ jQuery.prototype.ajaxSend = function(handler) {};
246
+
247
+ /** @const {jQueryAjaxSettingsExtra|Object<string, *>} */
248
+ jQuery.ajaxSettings;
249
+
250
+ /** @param {jQueryAjaxSettings|Object<string, *>} options */
251
+ jQuery.ajaxSetup = function(options) {};
252
+
253
+ /**
254
+ * @param {function()} handler
255
+ * @return {!jQuery}
256
+ */
257
+ jQuery.prototype.ajaxStart = function(handler) {};
258
+
259
+ /**
260
+ * @param {function()} handler
261
+ * @return {!jQuery}
262
+ */
263
+ jQuery.prototype.ajaxStop = function(handler) {};
264
+
265
+ /**
266
+ * @param {function(!jQuery.Event,XMLHttpRequest,(jQueryAjaxSettings|Object<string, *>), ?)} handler
267
+ * @return {!jQuery}
268
+ */
269
+ jQuery.prototype.ajaxSuccess = function(handler) {};
270
+
271
+ /**
272
+ * @param {string} dataType
273
+ * @param {function(!jQueryAjaxSettingsExtra, !jQueryAjaxSettings, !jQuery.jqXHR):(!jQueryAjaxTransport|undefined)} handler
274
+ * @return {undefined}
275
+ */
276
+ jQuery.ajaxTransport = function(dataType, handler) {};
277
+
278
+ /**
279
+ * @deprecated Please use .addBack(selector) instead.
280
+ * @return {!jQuery}
281
+ * @nosideeffects
282
+ */
283
+ jQuery.prototype.andSelf = function() {};
284
+
285
+ /**
286
+ * @param {Object<string,*>} properties
287
+ * @param {(string|number|function()|Object<string,*>)=} arg2
288
+ * @param {(string|function())=} easing
289
+ * @param {function()=} complete
290
+ * @return {!jQuery}
291
+ */
292
+ jQuery.prototype.animate = function(properties, arg2, easing, complete) {};
293
+
294
+ /**
295
+ * @param {(string|Element|Array<Element>|jQuery|function(number,string))} arg1
296
+ * @param {...(string|Element|Array<Element>|jQuery)} content
297
+ * @return {!jQuery}
298
+ */
299
+ jQuery.prototype.append = function(arg1, content) {};
300
+
301
+ /**
302
+ * @param {jQuerySelector} target
303
+ * @return {!jQuery}
304
+ */
305
+ jQuery.prototype.appendTo = function(target) {};
306
+
307
+ /**
308
+ * @param {(string|Object<string,*>)} arg1
309
+ * @param {(string|number|boolean|function(number,string))=} arg2
310
+ * @return {(string|!jQuery)}
311
+ */
312
+ jQuery.prototype.attr = function(arg1, arg2) {};
313
+
314
+ /**
315
+ * @param {(string|Element|Array<Element>|jQuery|function(this:Element,number,string=):(string|!Element|!jQuery))} arg1
316
+ * @param {...(string|Element|Array<Element>|jQuery)} content
317
+ * @return {!jQuery}
318
+ */
319
+ jQuery.prototype.before = function(arg1, content) {};
320
+
321
+ /**
322
+ * @param {(string|Object<string, function(!jQuery.Event)>)} arg1
323
+ * @param {(Object<string, *>|function(!jQuery.Event)|boolean)=} eventData
324
+ * @param {(function(!jQuery.Event)|boolean)=} arg3
325
+ * @return {!jQuery}
326
+ * @deprecated Please use .on instead.
327
+ */
328
+ jQuery.prototype.bind = function(arg1, eventData, arg3) {};
329
+
330
+ /**
331
+ * @param {(function(!jQuery.Event)|Object<string, *>)=} arg1
332
+ * @param {function(!jQuery.Event)=} handler
333
+ * @return {!jQuery}
334
+ */
335
+ jQuery.prototype.blur = function(arg1, handler) {};
336
+
337
+ /**
338
+ * @constructor
339
+ * @private
340
+ */
341
+ jQuery.callbacks = function () {};
342
+
343
+ /**
344
+ * @param {string=} flags
345
+ * @return {!jQuery.callbacks}
346
+ */
347
+ jQuery.Callbacks = function (flags) {};
348
+
349
+ /**
350
+ * @param {jQueryCallback} callbacks
351
+ * @return {!jQuery.callbacks}
352
+ */
353
+ jQuery.callbacks.prototype.add = function(callbacks) {};
354
+
355
+ /** @return {!jQuery.callbacks} */
356
+ jQuery.callbacks.prototype.disable = function() {};
357
+
358
+ /**
359
+ * @return {boolean}
360
+ * @nosideeffects
361
+ */
362
+ jQuery.callbacks.prototype.disabled = function() {};
363
+
364
+ /** @return {!jQuery.callbacks} */
365
+ jQuery.callbacks.prototype.empty = function() {};
366
+
367
+ /**
368
+ * @param {...*} var_args
369
+ * @return {!jQuery.callbacks}
370
+ */
371
+ jQuery.callbacks.prototype.fire = function(var_args) {};
372
+
373
+ /**
374
+ * @return {boolean}
375
+ * @nosideeffects
376
+ */
377
+ jQuery.callbacks.prototype.fired = function() {};
378
+
379
+ /**
380
+ * @param {...*} var_args
381
+ * @return {!jQuery.callbacks}
382
+ */
383
+ jQuery.callbacks.prototype.fireWith = function(var_args) {};
384
+
385
+ /**
386
+ * @param {function()=} callback
387
+ * @return {boolean}
388
+ * @nosideeffects
389
+ */
390
+ jQuery.callbacks.prototype.has = function(callback) {};
391
+
392
+ /** @return {!jQuery.callbacks} */
393
+ jQuery.callbacks.prototype.lock = function() {};
394
+
395
+ /**
396
+ * @return {boolean}
397
+ * @nosideeffects
398
+ */
399
+ jQuery.callbacks.prototype.locked = function() {};
400
+
401
+ /**
402
+ * @param {(function()|Array<function()>)} callbacks
403
+ * @return {!jQuery.callbacks}
404
+ */
405
+ jQuery.callbacks.prototype.remove = function(callbacks) {};
406
+
407
+ /**
408
+ * @param {(function(!jQuery.Event)|Object<string, *>)=} arg1
409
+ * @param {function(!jQuery.Event)=} handler
410
+ * @return {!jQuery}
411
+ */
412
+ jQuery.prototype.change = function(arg1, handler) {};
413
+
414
+ /**
415
+ * @param {jQuerySelector=} selector
416
+ * @return {!jQuery}
417
+ * @nosideeffects
418
+ */
419
+ jQuery.prototype.children = function(selector) {};
420
+
421
+ /**
422
+ * @param {string=} queueName
423
+ * @return {!jQuery}
424
+ */
425
+ jQuery.prototype.clearQueue = function(queueName) {};
426
+
427
+ /**
428
+ * @param {(function(!jQuery.Event)|Object<string, *>)=} arg1
429
+ * @param {function(!jQuery.Event)=} handler
430
+ * @return {!jQuery}
431
+ */
432
+ jQuery.prototype.click = function(arg1, handler) {};
433
+
434
+ /**
435
+ * @param {boolean=} withDataAndEvents
436
+ * @param {boolean=} deepWithDataAndEvents
437
+ * @return {!jQuery}
438
+ * @suppress {checkTypes} see https://code.google.com/p/closure-compiler/issues/detail?id=583
439
+ */
440
+ jQuery.prototype.clone = function(withDataAndEvents, deepWithDataAndEvents) {};
441
+
442
+ /**
443
+ * @param {jQuerySelector} arg1
444
+ * @param {Element=} context
445
+ * @return {!jQuery}
446
+ * @nosideeffects
447
+ */
448
+ jQuery.prototype.closest = function(arg1, context) {};
449
+
450
+ /**
451
+ * @param {Element} container
452
+ * @param {Element} contained
453
+ * @return {boolean}
454
+ * @nosideeffects
455
+ */
456
+ jQuery.contains = function(container, contained) {};
457
+
458
+ /**
459
+ * @return {!jQuery}
460
+ * @nosideeffects
461
+ */
462
+ jQuery.prototype.contents = function() {};
463
+
464
+ /**
465
+ * @param {(string|Object<string,*>)} arg1
466
+ * @param {(string|number|function(number,*))=} arg2
467
+ * @return {(string|!jQuery)}
468
+ * @throws {Error}
469
+ */
470
+ jQuery.prototype.css = function(arg1, arg2) {};
471
+
472
+ /** @type {Object<string, *>} */
473
+ jQuery.cssHooks;
474
+
475
+ /**
476
+ * @param {Element} elem
477
+ * @param {string=} key
478
+ * @param {*=} value
479
+ * @return {*}
480
+ */
481
+ jQuery.data = function(elem, key, value) {};
482
+
483
+ /**
484
+ * @param {(string|Object<string, *>)=} arg1
485
+ * @param {*=} value
486
+ * @return {*}
487
+ */
488
+ jQuery.prototype.data = function(arg1, value) {};
489
+
490
+ /**
491
+ * @param {(function(!jQuery.Event)|Object<string, *>)=} arg1
492
+ * @param {function(!jQuery.Event)=} handler
493
+ * @return {!jQuery}
494
+ */
495
+ jQuery.prototype.dblclick = function(arg1, handler) {};
496
+
497
+ /**
498
+ * @constructor
499
+ * @implements {jQuery.Promise}
500
+ * @param {function()=} opt_fn
501
+ * @see http://api.jquery.com/category/deferred-object/
502
+ */
503
+ jQuery.deferred = function(opt_fn) {};
504
+
505
+ /**
506
+ * @constructor
507
+ * @extends {jQuery.deferred}
508
+ * @param {function()=} opt_fn
509
+ * @return {!jQuery.Deferred}
510
+ */
511
+ jQuery.Deferred = function(opt_fn) {};
512
+
513
+ /**
514
+ * @override
515
+ * @param {jQueryCallback} alwaysCallbacks
516
+ * @param {...jQueryCallback} alwaysCallbacks2
517
+ * @return {!jQuery.deferred}
518
+ */
519
+ jQuery.deferred.prototype.always
520
+ = function(alwaysCallbacks, alwaysCallbacks2) {};
521
+
522
+ /**
523
+ * @override
524
+ * @param {function()} failCallback
525
+ * @return {!jQuery.Promise}
526
+ */
527
+ jQuery.deferred.prototype.catch = function(failCallback) {};
528
+
529
+ /**
530
+ * @override
531
+ * @param {jQueryCallback} doneCallbacks
532
+ * @param {...jQueryCallback} doneCallbacks2
533
+ * @return {!jQuery.deferred}
534
+ */
535
+ jQuery.deferred.prototype.done = function(doneCallbacks, doneCallbacks2) {};
536
+
537
+ /**
538
+ * @override
539
+ * @param {jQueryCallback} failCallbacks
540
+ * @param {...jQueryCallback} failCallbacks2
541
+ * @return {!jQuery.deferred}
542
+ */
543
+ jQuery.deferred.prototype.fail = function(failCallbacks, failCallbacks2) {};
544
+
545
+ /**
546
+ * @param {...*} var_args
547
+ * @return {!jQuery.deferred}
548
+ */
549
+ jQuery.deferred.prototype.notify = function(var_args) {};
550
+
551
+ /**
552
+ * @param {Object} context
553
+ * @param {...*} var_args
554
+ * @return {!jQuery.deferred}
555
+ */
556
+ jQuery.deferred.prototype.notifyWith = function(context, var_args) {};
557
+
558
+ /**
559
+ * @deprecated Please use deferred.then() instead.
560
+ * @override
561
+ * @param {function()=} doneFilter
562
+ * @param {function()=} failFilter
563
+ * @param {function()=} progressFilter
564
+ * @return {!jQuery.Promise}
565
+ */
566
+ jQuery.deferred.prototype.pipe =
567
+ function(doneFilter, failFilter, progressFilter) {};
568
+
569
+ /**
570
+ * @override
571
+ * @param {jQueryCallback} progressCallbacks
572
+ * @param {...jQueryCallback} progressCallbacks2
573
+ * @return {!jQuery.deferred}
574
+ */
575
+ jQuery.deferred.prototype.progress = function(progressCallbacks,progressCallbacks2) {};
576
+
577
+ /**
578
+ * @override
579
+ * @param {Object=} target
580
+ * @return {!jQuery.Promise}
581
+ */
582
+ jQuery.deferred.prototype.promise = function(target) {};
583
+
584
+ /**
585
+ * @param {...*} var_args
586
+ * @return {!jQuery.deferred}
587
+ */
588
+ jQuery.deferred.prototype.reject = function(var_args) {};
589
+
590
+ /**
591
+ * @param {Object} context
592
+ * @param {Array<*>=} args
593
+ * @return {!jQuery.deferred}
594
+ */
595
+ jQuery.deferred.prototype.rejectWith = function(context, args) {};
596
+
597
+ /**
598
+ * @param {...*} var_args
599
+ * @return {!jQuery.deferred}
600
+ */
601
+ jQuery.deferred.prototype.resolve = function(var_args) {};
602
+
603
+ /**
604
+ * @param {Object} context
605
+ * @param {Array<*>=} args
606
+ * @return {!jQuery.deferred}
607
+ */
608
+ jQuery.deferred.prototype.resolveWith = function(context, args) {};
609
+
610
+ /**
611
+ * @override
612
+ * @return {string}
613
+ * @nosideeffects
614
+ */
615
+ jQuery.deferred.prototype.state = function() {};
616
+
617
+ /**
618
+ * @override
619
+ * @param {function()} doneCallbacks
620
+ * @param {function()=} failCallbacks
621
+ * @param {function()=} progressFilter
622
+ * @return {!jQuery.deferred}
623
+ */
624
+ jQuery.deferred.prototype.then
625
+ = function(doneCallbacks, failCallbacks, progressFilter) {};
626
+
627
+ /**
628
+ * @param {number} duration
629
+ * @param {string=} queueName
630
+ * @return {!jQuery}
631
+ */
632
+ jQuery.prototype.delay = function(duration, queueName) {};
633
+
634
+ /**
635
+ * @param {string} selector
636
+ * @param {(string|Object<string,*>)} arg2
637
+ * @param {(function(!jQuery.Event)|Object<string, *>)=} arg3
638
+ * @param {function(!jQuery.Event)=} handler
639
+ * @return {!jQuery}
640
+ * @deprecated Please use .on instead.
641
+ */
642
+ jQuery.prototype.delegate = function(selector, arg2, arg3, handler) {};
643
+
644
+ /**
645
+ * @param {Element} elem
646
+ * @param {string=} queueName
647
+ * @return {undefined}
648
+ */
649
+ jQuery.dequeue = function(elem, queueName) {};
650
+
651
+ /**
652
+ * @param {string=} queueName
653
+ * @return {!jQuery}
654
+ */
655
+ jQuery.prototype.dequeue = function(queueName) {};
656
+
657
+ /**
658
+ * @param {jQuerySelector=} selector
659
+ * @return {!jQuery}
660
+ */
661
+ jQuery.prototype.detach = function(selector) {};
662
+
663
+ /**
664
+ * @param {Object} collection
665
+ * @param {function((number|string),?)} callback
666
+ * @return {Object}
667
+ */
668
+ jQuery.each = function(collection, callback) {};
669
+
670
+ /**
671
+ * @param {function(number,Element)} fnc
672
+ * @return {!jQuery}
673
+ */
674
+ jQuery.prototype.each = function(fnc) {};
675
+
676
+
677
+ /** @return {!jQuery} */
678
+ jQuery.prototype.empty = function() {};
679
+
680
+ /**
681
+ * @return {!jQuery}
682
+ * @nosideeffects
683
+ */
684
+ jQuery.prototype.end = function() {};
685
+
686
+ /**
687
+ * @param {number} arg1
688
+ * @return {!jQuery}
689
+ * @nosideeffects
690
+ */
691
+ jQuery.prototype.eq = function(arg1) {};
692
+
693
+ /**
694
+ * @param {string} message
695
+ * @throws {Error}
696
+ */
697
+ jQuery.error = function(message) {};
698
+
699
+ /**
700
+ * @param {string} arg1
701
+ * @return {string}
702
+ */
703
+ jQuery.escapeSelector = function(arg1) {};
704
+
705
+ /** @const */
706
+ jQuery.event = {};
707
+
708
+ /** @type {Object<string, Object>} */
709
+ jQuery.event.special;
710
+
711
+ /**
712
+ * @constructor
713
+ * @param {string} eventType
714
+ * @param {Object=} properties
715
+ * @return {!jQuery.Event}
716
+ */
717
+ jQuery.Event = function(eventType, properties) {};
718
+
719
+ /** @type {boolean} */
720
+ jQuery.Event.prototype.altKey;
721
+
722
+ /** @type {boolean} */
723
+ jQuery.Event.prototype.bubbles;
724
+
725
+ /** @type {number} */
726
+ jQuery.Event.prototype.button;
727
+
728
+ /** @type {number} */
729
+ jQuery.Event.prototype.buttons;
730
+
731
+ /** @type {boolean} */
732
+ jQuery.Event.prototype.cancelable;
733
+
734
+ /** @type {number} */
735
+ jQuery.Event.prototype.charCode;
736
+
737
+ /** @type {number} */
738
+ jQuery.Event.prototype.clientX;
739
+
740
+ /** @type {number} */
741
+ jQuery.Event.prototype.clientY;
742
+
743
+ /** @type {boolean} */
744
+ jQuery.Event.prototype.ctrlKey;
745
+
746
+ /** @type {Element} */
747
+ jQuery.Event.prototype.currentTarget;
748
+
749
+ /** @type {Object<string, *>} */
750
+ jQuery.Event.prototype.data;
751
+
752
+ /** @type {Element} */
753
+ jQuery.Event.prototype.delegateTarget;
754
+
755
+ /** @type {number} */
756
+ jQuery.Event.prototype.detail;
757
+
758
+ /** @type {number} */
759
+ jQuery.Event.prototype.eventPhase;
760
+
761
+ /**
762
+ * @return {boolean}
763
+ * @nosideeffects
764
+ */
765
+ jQuery.Event.prototype.isDefaultPrevented = function() {};
766
+
767
+ /**
768
+ * @return {boolean}
769
+ * @nosideeffects
770
+ */
771
+ jQuery.Event.prototype.isImmediatePropagationStopped = function() {};
772
+
773
+ /**
774
+ * @return {boolean}
775
+ * @nosideeffects
776
+ */
777
+ jQuery.Event.prototype.isPropagationStopped = function() {};
778
+
779
+ /** @type {number} */
780
+ jQuery.Event.prototype.keyCode;
781
+
782
+ /** @type {boolean} */
783
+ jQuery.Event.prototype.metaKey;
784
+
785
+ /** @type {string} */
786
+ jQuery.Event.prototype.namespace;
787
+
788
+ /** @type {number} */
789
+ jQuery.Event.prototype.offsetX;
790
+
791
+ /** @type {number} */
792
+ jQuery.Event.prototype.offsetY;
793
+
794
+ /** @type {Event} */
795
+ jQuery.Event.prototype.originalEvent;
796
+
797
+ /** @type {Element} */
798
+ jQuery.Event.prototype.originalTarget;
799
+
800
+ /** @type {number} */
801
+ jQuery.Event.prototype.pageX;
802
+
803
+ /** @type {number} */
804
+ jQuery.Event.prototype.pageY;
805
+
806
+ /** @return {undefined} */
807
+ jQuery.Event.prototype.preventDefault = function() {};
808
+
809
+ /** @type {Object<string, *>} */
810
+ jQuery.Event.prototype.props;
811
+
812
+ /** @type {Element} */
813
+ jQuery.Event.prototype.relatedTarget;
814
+
815
+ /** @type {*} */
816
+ jQuery.Event.prototype.result;
817
+
818
+ /** @type {number} */
819
+ jQuery.Event.prototype.screenX;
820
+
821
+ /** @type {number} */
822
+ jQuery.Event.prototype.screenY;
823
+
824
+ /** @type {boolean} */
825
+ jQuery.Event.prototype.shiftKey;
826
+
827
+ /** @return {undefined} */
828
+ jQuery.Event.prototype.stopImmediatePropagation = function() {};
829
+
830
+ /** @return {undefined} */
831
+ jQuery.Event.prototype.stopPropagation = function() {};
832
+
833
+ /** @type {Element} */
834
+ jQuery.Event.prototype.target;
835
+
836
+ /** @type {number} */
837
+ jQuery.Event.prototype.timeStamp;
838
+
839
+ /** @type {Element} */
840
+ jQuery.Event.prototype.toElement;
841
+
842
+ /** @type {string} */
843
+ jQuery.Event.prototype.type;
844
+
845
+ /** @type {Window} */
846
+ jQuery.Event.prototype.view;
847
+
848
+ /** @type {number} */
849
+ jQuery.Event.prototype.which;
850
+
851
+ /**
852
+ * @param {(Object|boolean)} arg1
853
+ * @param {...*} var_args
854
+ * @return {Object}
855
+ */
856
+ jQuery.extend = function(arg1, var_args) {};
857
+
858
+ /**
859
+ * @param {(Object|boolean)} arg1
860
+ * @param {...*} var_args
861
+ * @return {Object}
862
+ */
863
+ jQuery.prototype.extend = function(arg1, var_args) {};
864
+
865
+ /**
866
+ * @param {(string|number|function())=} duration
867
+ * @param {(function()|string)=} arg2
868
+ * @param {function()=} callback
869
+ * @return {!jQuery}
870
+ */
871
+ jQuery.prototype.fadeIn = function(duration, arg2, callback) {};
872
+
873
+ /**
874
+ * @param {(string|number|function())=} duration
875
+ * @param {(function()|string)=} arg2
876
+ * @param {function()=} callback
877
+ * @return {!jQuery}
878
+ */
879
+ jQuery.prototype.fadeOut = function(duration, arg2, callback) {};
880
+
881
+ /**
882
+ * @param {(string|number)} duration
883
+ * @param {number} opacity
884
+ * @param {(function()|string)=} arg3
885
+ * @param {function()=} callback
886
+ * @return {!jQuery}
887
+ */
888
+ jQuery.prototype.fadeTo = function(duration, opacity, arg3, callback) {};
889
+
890
+ /**
891
+ * @param {(string|number|function())=} duration
892
+ * @param {(string|function())=} easing
893
+ * @param {function()=} callback
894
+ * @return {!jQuery}
895
+ */
896
+ jQuery.prototype.fadeToggle = function(duration, easing, callback) {};
897
+
898
+ /**
899
+ * @param {(jQuerySelector|function(number,Element))} arg1
900
+ * @return {!jQuery}
901
+ * @see http://api.jquery.com/filter/
902
+ */
903
+ jQuery.prototype.filter = function(arg1) {};
904
+
905
+ /**
906
+ * @param {jQuerySelector} arg1
907
+ * @return {!jQuery}
908
+ * @nosideeffects
909
+ */
910
+ jQuery.prototype.find = function(arg1) {};
911
+
912
+ /**
913
+ * @return {!jQuery}
914
+ * @nosideeffects
915
+ */
916
+ jQuery.prototype.first = function() {};
917
+
918
+ /** @see http://docs.jquery.com/Plugins/Authoring */
919
+ jQuery.fn = jQuery.prototype;
920
+
921
+ /**
922
+ * @param {(function(!jQuery.Event)|Object<string, *>)=} arg1
923
+ * @param {function(!jQuery.Event)=} handler
924
+ * @return {!jQuery}
925
+ */
926
+ jQuery.prototype.focus = function(arg1, handler) {};
927
+
928
+ /**
929
+ * @param {(function(!jQuery.Event)|Object<string, *>)} arg1
930
+ * @param {function(!jQuery.Event)=} handler
931
+ * @return {!jQuery}
932
+ */
933
+ jQuery.prototype.focusin = function(arg1, handler) {};
934
+
935
+ /**
936
+ * @param {(function(!jQuery.Event)|Object<string, *>)} arg1
937
+ * @param {function(!jQuery.Event)=} handler
938
+ * @return {!jQuery}
939
+ */
940
+ jQuery.prototype.focusout = function(arg1, handler) {};
941
+
942
+ /** @const */
943
+ jQuery.fx = {};
944
+
945
+ /** @type {number} */
946
+ jQuery.fx.interval;
947
+
948
+ /** @type {boolean} */
949
+ jQuery.fx.off;
950
+
951
+ /**
952
+ * @param {(string|jQueryAjaxSettings|Object<string,*>)} url
953
+ * @param {(Object<string,*>|string|
954
+ * function(string,string,jQuery.jqXHR))=} data
955
+ * @param {(function(string,string,jQuery.jqXHR)|string|null)=} success
956
+ * @param {string=} dataType
957
+ * @return {!jQuery.jqXHR}
958
+ */
959
+ jQuery.get = function(url, data, success, dataType) {};
960
+
961
+ /**
962
+ * @param {number=} index
963
+ * @return {(Element|Array<Element>)}
964
+ * @nosideeffects
965
+ */
966
+ jQuery.prototype.get = function(index) {};
967
+
968
+ /**
969
+ * @param {string} url
970
+ * @param {(Object<string,*>|
971
+ * function(Object<string,*>,string,jQuery.jqXHR))=} data
972
+ * @param {function(Object<string,*>,string,jQuery.jqXHR)=} success
973
+ * @return {!jQuery.jqXHR}
974
+ * @see http://api.jquery.com/jquery.getjson/#jQuery-getJSON-url-data-success
975
+ */
976
+ jQuery.getJSON = function(url, data, success) {};
977
+
978
+ /**
979
+ * @param {string} url
980
+ * @param {function(Node,string,jQuery.jqXHR)=} success
981
+ * @return {!jQuery.jqXHR}
982
+ */
983
+ jQuery.getScript = function(url, success) {};
984
+
985
+ /** @param {string} code */
986
+ jQuery.globalEval = function(code) {};
987
+
988
+ /**
989
+ * @template T
990
+ * @param {!Array<T>} arr
991
+ * @param {function(*,number)} fnc
992
+ * @param {boolean=} invert
993
+ * @return {!Array<T>}
994
+ */
995
+ jQuery.grep = function(arr, fnc, invert) {};
996
+
997
+ /**
998
+ * @param {(string|Element)} arg1
999
+ * @return {!jQuery}
1000
+ * @nosideeffects
1001
+ */
1002
+ jQuery.prototype.has = function(arg1) {};
1003
+
1004
+ /**
1005
+ * @param {string} className
1006
+ * @return {boolean}
1007
+ * @nosideeffects
1008
+ */
1009
+ jQuery.prototype.hasClass = function(className) {};
1010
+
1011
+ /**
1012
+ * @param {!Element} elem
1013
+ * @return {boolean}
1014
+ * @nosideeffects
1015
+ */
1016
+ jQuery.hasData = function(elem) {};
1017
+
1018
+ /**
1019
+ * @param {(string|number|function(number,number))=} arg1
1020
+ * @return {(number|undefined|!jQuery)}
1021
+ */
1022
+ jQuery.prototype.height = function(arg1) {};
1023
+
1024
+ /**
1025
+ * @param {(string|number|function())=} duration
1026
+ * @param {(function()|string)=} arg2
1027
+ * @param {function()=} callback
1028
+ * @return {!jQuery}
1029
+ */
1030
+ jQuery.prototype.hide = function(duration, arg2, callback) {};
1031
+
1032
+ /**
1033
+ * @param {boolean} hold
1034
+ * @return {undefined}
1035
+ */
1036
+ jQuery.holdReady = function(hold) {};
1037
+
1038
+ /**
1039
+ * @param {function(!jQuery.Event)} arg1
1040
+ * @param {function(!jQuery.Event)=} handlerOut
1041
+ * @return {!jQuery}
1042
+ */
1043
+ jQuery.prototype.hover = function(arg1, handlerOut) {};
1044
+
1045
+ /**
1046
+ * @param {(string|function(number,string))=} arg1
1047
+ * @return {(string|!jQuery)}
1048
+ */
1049
+ jQuery.prototype.html = function(arg1) {};
1050
+
1051
+ /**
1052
+ * @param {string} html
1053
+ * @nosideeffects
1054
+ * @return {string}
1055
+ */
1056
+ jQuery.htmlPrefilter = function(html) {};
1057
+
1058
+ /**
1059
+ * @param {*} value
1060
+ * @param {Array<*>} arr
1061
+ * @param {number=} fromIndex
1062
+ * @return {number}
1063
+ * @nosideeffects
1064
+ */
1065
+ jQuery.inArray = function(value, arr, fromIndex) {};
1066
+
1067
+ /**
1068
+ * @param {jQuerySelector=} arg1
1069
+ * @return {number}
1070
+ * @nosideeffects
1071
+ */
1072
+ jQuery.prototype.index = function(arg1) {};
1073
+
1074
+ /**
1075
+ * @param {(number|string|function(number,number):(number|string))=} value
1076
+ * @return {(number|undefined|jQuery)}
1077
+ */
1078
+ jQuery.prototype.innerHeight = function(value) {};
1079
+
1080
+ /**
1081
+ * @param {(number|string|function(number,number):(number|string))=} value
1082
+ * @return {(number|undefined|jQuery)}
1083
+ */
1084
+ jQuery.prototype.innerWidth = function(value) {};
1085
+
1086
+ /**
1087
+ * @param {jQuerySelector} target
1088
+ * @return {!jQuery}
1089
+ */
1090
+ jQuery.prototype.insertAfter = function(target) {};
1091
+
1092
+ /**
1093
+ * @param {jQuerySelector} target
1094
+ * @return {!jQuery}
1095
+ */
1096
+ jQuery.prototype.insertBefore = function(target) {};
1097
+
1098
+ /**
1099
+ * @param {jQuerySelector|function(number,Element):boolean} arg1
1100
+ * @return {boolean}
1101
+ */
1102
+ jQuery.prototype.is = function(arg1) {};
1103
+
1104
+ /**
1105
+ * @param {*} obj
1106
+ * @return {boolean}
1107
+ * @nosideeffects
1108
+ */
1109
+ jQuery.isArray = function(obj) {};
1110
+
1111
+ /**
1112
+ * @param {Object} obj
1113
+ * @return {boolean}
1114
+ * @nosideeffects
1115
+ */
1116
+ jQuery.isEmptyObject = function(obj) {};
1117
+
1118
+ /**
1119
+ * @param {*} obj
1120
+ * @return {boolean}
1121
+ * @nosideeffects
1122
+ */
1123
+ jQuery.isFunction = function(obj) {};
1124
+
1125
+ /**
1126
+ * @param {*} value
1127
+ * @return {boolean}
1128
+ * @nosideeffects
1129
+ */
1130
+ jQuery.isNumeric = function(value) {};
1131
+
1132
+ /**
1133
+ * @param {*} obj
1134
+ * @return {boolean}
1135
+ * @nosideeffects
1136
+ */
1137
+ jQuery.isPlainObject = function(obj) {};
1138
+
1139
+ /**
1140
+ * @param {*} obj
1141
+ * @return {boolean}
1142
+ * @nosideeffects
1143
+ */
1144
+ jQuery.isWindow = function(obj) {};
1145
+
1146
+ /**
1147
+ * @param {Element} node
1148
+ * @return {boolean}
1149
+ * @nosideeffects
1150
+ */
1151
+ jQuery.isXMLDoc = function(node) {};
1152
+
1153
+ /** @type {string} */
1154
+ jQuery.prototype.jquery;
1155
+
1156
+ /**
1157
+ * @constructor
1158
+ * @extends {XMLHttpRequest}
1159
+ * @implements {jQuery.Promise}
1160
+ * @private
1161
+ * @see http://api.jquery.com/jQuery.ajax/#jqXHR
1162
+ */
1163
+ jQuery.jqXHR = function () {};
1164
+
1165
+ /**
1166
+ * @override
1167
+ * @param {string=} statusText
1168
+ * @return {!jQuery.jqXHR}
1169
+ * @suppress {checkTypes} to avoid warning about XMLHttpRequest abort method missmatch
1170
+ */
1171
+ jQuery.jqXHR.prototype.abort = function(statusText) {};
1172
+
1173
+ /**
1174
+ * @override
1175
+ * @param {jQueryCallback} alwaysCallbacks
1176
+ * @param {...jQueryCallback} alwaysCallbacks2
1177
+ * @return {!jQuery.jqXHR}
1178
+ */
1179
+ jQuery.jqXHR.prototype.always =
1180
+ function(alwaysCallbacks, alwaysCallbacks2) {};
1181
+
1182
+ /**
1183
+ * @override
1184
+ * @param {function()} failCallback
1185
+ * @return {!jQuery.jqXHR}
1186
+ */
1187
+ jQuery.jqXHR.prototype.catch = function(failCallback) {};
1188
+
1189
+ /**
1190
+ * @override
1191
+ * @param {jQueryCallback} doneCallbacks
1192
+ * @param {...jQueryCallback} doneCallbacks2
1193
+ * @return {!jQuery.jqXHR}
1194
+ */
1195
+ jQuery.jqXHR.prototype.done = function(doneCallbacks,doneCallbacks2) {};
1196
+
1197
+ /**
1198
+ * @override
1199
+ * @param {jQueryCallback} failCallbacks
1200
+ * @param {...jQueryCallback} failCallbacks2
1201
+ * @return {!jQuery.jqXHR}
1202
+ */
1203
+ jQuery.jqXHR.prototype.fail = function(failCallbacks,failCallbacks2) {};
1204
+
1205
+ /**
1206
+ * @deprecated
1207
+ * @override
1208
+ */
1209
+ jQuery.jqXHR.prototype.onreadystatechange = function (callback) {};
1210
+
1211
+ /**
1212
+ * @override
1213
+ * @param {function()=} doneFilter
1214
+ * @param {function()=} failFilter
1215
+ * @param {function()=} progressFilter
1216
+ * @return {!jQuery.jqXHR}
1217
+ */
1218
+ jQuery.jqXHR.prototype.pipe =
1219
+ function(doneFilter, failFilter, progressFilter) {};
1220
+
1221
+ /**
1222
+ * @override
1223
+ * @param {jQueryCallback} progressCallbacks
1224
+ * @param {...jQueryCallback} progressCallbacks2
1225
+ * @return {!jQuery.jqXHR}
1226
+ */
1227
+ jQuery.jqXHR.prototype.progress = function(progressCallbacks,progressCallbacks2) {};
1228
+
1229
+ /**
1230
+ * @override
1231
+ * @param {Object=} target
1232
+ * @return {!jQuery.Promise}
1233
+ */
1234
+ jQuery.jqXHR.prototype.promise = function(target) {};
1235
+
1236
+ /**
1237
+ * @override
1238
+ * @return {string}
1239
+ * @nosideeffects
1240
+ */
1241
+ jQuery.jqXHR.prototype.state = function() {};
1242
+
1243
+ /**
1244
+ * @param {Object<number, function()>} map
1245
+ * @return {!jQuery.jqXHR}
1246
+ */
1247
+ jQuery.jqXHR.prototype.statusCode = function(map) {};
1248
+
1249
+ /**
1250
+ * @override
1251
+ * @param {function()} doneCallback
1252
+ * @param {function()=} failCallback
1253
+ * @param {function()=} progressCallback
1254
+ * @return {!jQuery.jqXHR}
1255
+ */
1256
+ jQuery.jqXHR.prototype.then =
1257
+ function(doneCallback, failCallback, progressCallback) {};
1258
+
1259
+ /**
1260
+ * @param {(function(!jQuery.Event)|Object<string, *>)=} arg1
1261
+ * @param {function(!jQuery.Event)=} handler
1262
+ * @return {!jQuery}
1263
+ */
1264
+ jQuery.prototype.keydown = function(arg1, handler) {};
1265
+
1266
+ /**
1267
+ * @param {(function(!jQuery.Event)|Object<string, *>)=} arg1
1268
+ * @param {function(!jQuery.Event)=} handler
1269
+ * @return {!jQuery}
1270
+ */
1271
+ jQuery.prototype.keypress = function(arg1, handler) {};
1272
+
1273
+ /**
1274
+ * @param {(function(!jQuery.Event)|Object<string, *>)=} arg1
1275
+ * @param {function(!jQuery.Event)=} handler
1276
+ * @return {!jQuery}
1277
+ */
1278
+ jQuery.prototype.keyup = function(arg1, handler) {};
1279
+
1280
+ /**
1281
+ * @return {!jQuery}
1282
+ * @nosideeffects
1283
+ */
1284
+ jQuery.prototype.last = function() {};
1285
+
1286
+ /** @type {number} */
1287
+ jQuery.prototype.length;
1288
+
1289
+ /**
1290
+ * @param {*} obj
1291
+ * @return {Array<*>}
1292
+ * @nosideeffects
1293
+ */
1294
+ jQuery.makeArray = function(obj) {};
1295
+
1296
+ /**
1297
+ * @template T
1298
+ * @param {(Array<T>|Object<string, T>)} arg1
1299
+ * @param {(function(T,number)|function(T,(string|number)))} callback
1300
+ * @return {Array<T>}
1301
+ */
1302
+ jQuery.map = function(arg1, callback) {};
1303
+
1304
+ /**
1305
+ * @param {function(number,Element)} callback
1306
+ * @return {!jQuery}
1307
+ */
1308
+ jQuery.prototype.map = function(callback) {};
1309
+
1310
+ /**
1311
+ * @param {Array<*>} first
1312
+ * @param {Array<*>} second
1313
+ * @return {Array<*>}
1314
+ */
1315
+ jQuery.merge = function(first, second) {};
1316
+
1317
+ /**
1318
+ * @param {(function(!jQuery.Event)|Object<string, *>)=} arg1
1319
+ * @param {function(!jQuery.Event)=} handler
1320
+ * @return {!jQuery}
1321
+ */
1322
+ jQuery.prototype.mousedown = function(arg1, handler) {};
1323
+
1324
+ /**
1325
+ * @param {(function(!jQuery.Event)|Object<string, *>)=} arg1
1326
+ * @param {function(!jQuery.Event)=} handler
1327
+ * @return {!jQuery}
1328
+ */
1329
+ jQuery.prototype.mouseenter = function(arg1, handler) {};
1330
+
1331
+ /**
1332
+ * @param {(function(!jQuery.Event)|Object<string, *>)=} arg1
1333
+ * @param {function(!jQuery.Event)=} handler
1334
+ * @return {!jQuery}
1335
+ */
1336
+ jQuery.prototype.mouseleave = function(arg1, handler) {};
1337
+
1338
+ /**
1339
+ * @param {(function(!jQuery.Event)|Object<string, *>)=} arg1
1340
+ * @param {function(!jQuery.Event)=} handler
1341
+ * @return {!jQuery}
1342
+ */
1343
+ jQuery.prototype.mousemove = function(arg1, handler) {};
1344
+
1345
+ /**
1346
+ * @param {(function(!jQuery.Event)|Object<string, *>)=} arg1
1347
+ * @param {function(!jQuery.Event)=} handler
1348
+ * @return {!jQuery}
1349
+ */
1350
+ jQuery.prototype.mouseout = function(arg1, handler) {};
1351
+
1352
+ /**
1353
+ * @param {(function(!jQuery.Event)|Object<string, *>)=} arg1
1354
+ * @param {function(!jQuery.Event)=} handler
1355
+ * @return {!jQuery}
1356
+ */
1357
+ jQuery.prototype.mouseover = function(arg1, handler) {};
1358
+
1359
+ /**
1360
+ * @param {(function(!jQuery.Event)|Object<string, *>)=} arg1
1361
+ * @param {function(!jQuery.Event)=} handler
1362
+ * @return {!jQuery}
1363
+ */
1364
+ jQuery.prototype.mouseup = function(arg1, handler) {};
1365
+
1366
+ /**
1367
+ * @param {jQuerySelector=} selector
1368
+ * @return {!jQuery}
1369
+ * @nosideeffects
1370
+ */
1371
+ jQuery.prototype.next = function(selector) {};
1372
+
1373
+ /**
1374
+ * @param {string=} selector
1375
+ * @return {!jQuery}
1376
+ * @nosideeffects
1377
+ */
1378
+ jQuery.prototype.nextAll = function(selector) {};
1379
+
1380
+ /**
1381
+ * @param {jQuerySelector=} arg1
1382
+ * @param {jQuerySelector=} filter
1383
+ * @return {!jQuery}
1384
+ * @nosideeffects
1385
+ */
1386
+ jQuery.prototype.nextUntil = function(arg1, filter) {};
1387
+
1388
+ /**
1389
+ * @param {boolean=} removeAll
1390
+ * @return {Object}
1391
+ */
1392
+ jQuery.noConflict = function(removeAll) {};
1393
+
1394
+ /**
1395
+ * @return {undefined}
1396
+ * @nosideeffects
1397
+ */
1398
+ jQuery.noop = function() {};
1399
+
1400
+ /**
1401
+ * @param {(jQuerySelector|function(this:Element,number,Element=):boolean)} arg1
1402
+ * @return {!jQuery}
1403
+ */
1404
+ jQuery.prototype.not = function(arg1) {};
1405
+
1406
+ /**
1407
+ * @return {number}
1408
+ * @nosideeffects
1409
+ */
1410
+ jQuery.now = function() {};
1411
+
1412
+ /**
1413
+ * @param {(string|Object<string,*>)=} arg1
1414
+ * @param {(string|function(!jQuery.Event))=} selector
1415
+ * @param {function(!jQuery.Event)=} handler
1416
+ * @return {!jQuery}
1417
+ */
1418
+ jQuery.prototype.off = function(arg1, selector, handler) {};
1419
+
1420
+ /**
1421
+ * @param {({left:number,top:number}|
1422
+ * function(number,{top:number,left:number}))=} arg1
1423
+ * @return {({left:number,top:number}|undefined|!jQuery)}
1424
+ * @throws {Error}
1425
+ */
1426
+ jQuery.prototype.offset = function(arg1) {};
1427
+
1428
+ /**
1429
+ * @return {!jQuery}
1430
+ * @nosideeffects
1431
+ */
1432
+ jQuery.prototype.offsetParent = function() {};
1433
+
1434
+ /**
1435
+ * @param {(string|Object<string,function(!jQuery.Event)>)} events
1436
+ * @param {*=} selector or data or handler
1437
+ * @param {*=} data or handler
1438
+ * @param {function(!jQuery.Event)=} handler
1439
+ * @throws {Error}
1440
+ * @return {!jQuery}
1441
+ */
1442
+ jQuery.prototype.on = function(events, selector, data, handler) {};
1443
+
1444
+ /**
1445
+ * @param {(string|Object<string,function(!jQuery.Event)>)} events
1446
+ * @param {*=} selector or data or handler
1447
+ * @param {*=} data or handler
1448
+ * @param {function(!jQuery.Event)=} handler
1449
+ * @throws {Error}
1450
+ * @return {!jQuery}
1451
+ */
1452
+ jQuery.prototype.one = function(events, selector, data, handler) {};
1453
+
1454
+ /**
1455
+ * @param {boolean|number|string|function(number,number):(number|string)=} includeMargin
1456
+ * @return {number|undefined|jQuery}
1457
+ */
1458
+ jQuery.prototype.outerHeight = function(includeMargin) {};
1459
+
1460
+ /**
1461
+ * @param {boolean|number|string|function(number,number):(number|string)=} includeMargin
1462
+ * @return {number|undefined|jQuery}
1463
+ */
1464
+ jQuery.prototype.outerWidth = function(includeMargin) {};
1465
+
1466
+ /**
1467
+ * @param {(Object<string, *>|Array<Object<string, *>>)} obj
1468
+ * @param {boolean=} traditional
1469
+ * @return {string}
1470
+ */
1471
+ jQuery.param = function(obj, traditional) {};
1472
+
1473
+ /**
1474
+ * @param {jQuerySelector=} selector
1475
+ * @return {!jQuery}
1476
+ * @nosideeffects
1477
+ */
1478
+ jQuery.prototype.parent = function(selector) {};
1479
+
1480
+ /**
1481
+ * @param {jQuerySelector=} selector
1482
+ * @return {!jQuery}
1483
+ * @nosideeffects
1484
+ */
1485
+ jQuery.prototype.parents = function(selector) {};
1486
+
1487
+ /**
1488
+ * @param {jQuerySelector=} arg1
1489
+ * @param {jQuerySelector=} filter
1490
+ * @return {!jQuery}
1491
+ * @nosideeffects
1492
+ */
1493
+ jQuery.prototype.parentsUntil = function(arg1, filter) {};
1494
+
1495
+ /**
1496
+ * @param {string} data
1497
+ * @param {(Element|boolean)=} context
1498
+ * @param {boolean=} keepScripts
1499
+ * @return {Array<Element>}
1500
+ */
1501
+ jQuery.parseHTML = function(data, context, keepScripts) {};
1502
+
1503
+ /**
1504
+ * @param {string} json
1505
+ * @return {string|number|Object<string, *>|Array<?>|boolean}
1506
+ * @deprecated Please use JSON.parse() instead.
1507
+ */
1508
+ jQuery.parseJSON = function(json) {};
1509
+
1510
+ /**
1511
+ * @param {string} data
1512
+ * @return {Document}
1513
+ */
1514
+ jQuery.parseXML = function(data) {};
1515
+
1516
+ /**
1517
+ * @return {{left:number,top:number}}
1518
+ * @nosideeffects
1519
+ */
1520
+ jQuery.prototype.position = function() {};
1521
+
1522
+ /**
1523
+ * @param {(string|jQueryAjaxSettings|Object<string,*>)} url
1524
+ * @param {(Object<string,*>|string|
1525
+ * function(string,string,jQuery.jqXHR))=} data
1526
+ * @param {(function(string,string,jQuery.jqXHR)|string|null)=} success
1527
+ * @param {string=} dataType
1528
+ * @return {!jQuery.jqXHR}
1529
+ */
1530
+ jQuery.post = function(url, data, success, dataType) {};
1531
+ /**
1532
+ * @param {(string|Element|jQuery|function(number,string))} arg1
1533
+ * @param {(string|Element|jQuery)=} content
1534
+ * @return {!jQuery}
1535
+ */
1536
+ jQuery.prototype.prepend = function(arg1, content) {};
1537
+
1538
+ /**
1539
+ * @param {jQuerySelector} target
1540
+ * @return {!jQuery}
1541
+ */
1542
+ jQuery.prototype.prependTo = function(target) {};
1543
+
1544
+ /**
1545
+ * @param {jQuerySelector=} selector
1546
+ * @return {!jQuery}
1547
+ * @nosideeffects
1548
+ */
1549
+ jQuery.prototype.prev = function(selector) {};
1550
+
1551
+ /**
1552
+ * @param {jQuerySelector=} selector
1553
+ * @return {!jQuery}
1554
+ * @nosideeffects
1555
+ */
1556
+ jQuery.prototype.prevAll = function(selector) {};
1557
+
1558
+ /**
1559
+ * @param {jQuerySelector=} arg1
1560
+ * @param {jQuerySelector=} filter
1561
+ * @return {!jQuery}
1562
+ * @nosideeffects
1563
+ */
1564
+ jQuery.prototype.prevUntil = function(arg1, filter) {};
1565
+
1566
+ /**
1567
+ * @param {(string|Object)=} type
1568
+ * @param {Object=} target
1569
+ * @return {!jQuery.Promise}
1570
+ */
1571
+ jQuery.prototype.promise = function(type, target) {};
1572
+
1573
+ /**
1574
+ * @interface
1575
+ * @private
1576
+ * @see http://api.jquery.com/Types/#Promise
1577
+ */
1578
+ jQuery.Promise = function () {};
1579
+
1580
+ /**
1581
+ * @param {jQueryCallback} alwaysCallbacks
1582
+ * @param {...jQueryCallback} alwaysCallbacks2
1583
+ * @return {!jQuery.Promise}
1584
+ */
1585
+ jQuery.Promise.prototype.always =
1586
+ function(alwaysCallbacks, alwaysCallbacks2) {};
1587
+
1588
+ /**
1589
+ * @param {jQueryCallback} doneCallbacks
1590
+ * @param {...jQueryCallback} doneCallbacks2
1591
+ * @return {!jQuery.Promise}
1592
+ */
1593
+ jQuery.Promise.prototype.done = function(doneCallbacks,doneCallbacks2) {};
1594
+
1595
+ /**
1596
+ * @param {function()} failCallback
1597
+ * @return {!jQuery.Promise}
1598
+ */
1599
+ jQuery.Promise.prototype.catch = function(failCallback) {};
1600
+
1601
+ /**
1602
+ * @param {jQueryCallback} failCallbacks
1603
+ * @param {...jQueryCallback} failCallbacks2
1604
+ * @return {!jQuery.Promise}
1605
+ */
1606
+ jQuery.Promise.prototype.fail = function(failCallbacks,failCallbacks2) {};
1607
+
1608
+ /**
1609
+ * @deprecated Please use deferred.then() instead.
1610
+ * @param {function()=} doneFilter
1611
+ * @param {function()=} failFilter
1612
+ * @param {function()=} progressFilter
1613
+ * @return {!jQuery.Promise}
1614
+ */
1615
+ jQuery.Promise.prototype.pipe =
1616
+ function(doneFilter, failFilter, progressFilter) {};
1617
+
1618
+ /**
1619
+ * @param {jQueryCallback} progressCallbacks
1620
+ * @param {...jQueryCallback} progressCallbacks2
1621
+ * @return {!jQuery.Promise}
1622
+ */
1623
+ jQuery.Promise.prototype.progress = function(progressCallbacks,progressCallbacks2) {};
1624
+
1625
+ /**
1626
+ * @param {Object=} target
1627
+ * @return {!jQuery.Promise}
1628
+ */
1629
+ jQuery.Promise.prototype.promise = function(target) {};
1630
+
1631
+ /**
1632
+ * @return {string}
1633
+ * @nosideeffects
1634
+ */
1635
+ jQuery.Promise.prototype.state = function() {};
1636
+
1637
+ /**
1638
+ * @param {function()} doneCallbacks
1639
+ * @param {function()=} failCallbacks
1640
+ * @param {function()=} progressCallbacks
1641
+ * @return {!jQuery.Promise}
1642
+ */
1643
+ jQuery.Promise.prototype.then =
1644
+ function(doneCallbacks, failCallbacks, progressCallbacks) {};
1645
+
1646
+ /**
1647
+ * @param {(string|Object<string,*>)} arg1
1648
+ * @param {(string|number|boolean|function(number,String))=} arg2
1649
+ * @return {(string|boolean|!jQuery)}
1650
+ */
1651
+ jQuery.prototype.prop = function(arg1, arg2) {};
1652
+
1653
+ /**
1654
+ * @param {...*} var_args
1655
+ * @return {function()}
1656
+ */
1657
+ jQuery.proxy = function(var_args) {};
1658
+
1659
+ /**
1660
+ * @param {Array<Element>} elements
1661
+ * @param {string=} name
1662
+ * @param {Array<*>=} args
1663
+ * @return {!jQuery}
1664
+ */
1665
+ jQuery.prototype.pushStack = function(elements, name, args) {};
1666
+
1667
+ /**
1668
+ * @param {(string|Array<function()>|function(function()))=} queueName
1669
+ * @param {(Array<function()>|function(function()))=} arg2
1670
+ * @return {(Array<Element>|!jQuery)}
1671
+ */
1672
+ jQuery.prototype.queue = function(queueName, arg2) {};
1673
+
1674
+ /**
1675
+ * @param {Element} elem
1676
+ * @param {string=} queueName
1677
+ * @param {(Array<function()>|function())=} arg3
1678
+ * @return {(Array<Element>|!jQuery)}
1679
+ */
1680
+ jQuery.queue = function(elem, queueName, arg3) {};
1681
+
1682
+ /**
1683
+ * @param {function()} handler
1684
+ * @return {!jQuery}
1685
+ * @deprecated Please use the $(handler) instead.
1686
+ */
1687
+ jQuery.prototype.ready = function(handler) {};
1688
+
1689
+ /**
1690
+ * @param {string=} selector
1691
+ * @return {!jQuery}
1692
+ */
1693
+ jQuery.prototype.remove = function(selector) {};
1694
+
1695
+ /**
1696
+ * @param {string} attributeName
1697
+ * @return {!jQuery}
1698
+ */
1699
+ jQuery.prototype.removeAttr = function(attributeName) {};
1700
+
1701
+ /**
1702
+ * @param {(string|function(number,string))=} arg1
1703
+ * @return {!jQuery}
1704
+ */
1705
+ jQuery.prototype.removeClass = function(arg1) {};
1706
+
1707
+ /**
1708
+ * @param {(string|Array<string>)=} arg1
1709
+ * @return {!jQuery}
1710
+ */
1711
+ jQuery.prototype.removeData = function(arg1) {};
1712
+
1713
+ /**
1714
+ * @param {Element} elem
1715
+ * @param {string=} name
1716
+ * @return {!jQuery}
1717
+ */
1718
+ jQuery.removeData = function(elem, name) {};
1719
+
1720
+ /**
1721
+ * @param {string} propertyName
1722
+ * @return {!jQuery}
1723
+ */
1724
+ jQuery.prototype.removeProp = function(propertyName) {};
1725
+
1726
+ /**
1727
+ * @param {jQuerySelector} target
1728
+ * @return {!jQuery}
1729
+ */
1730
+ jQuery.prototype.replaceAll = function(target) {};
1731
+
1732
+ /**
1733
+ * @param {(string|Element|jQuery|function())} arg1
1734
+ * @return {!jQuery}
1735
+ */
1736
+ jQuery.prototype.replaceWith = function(arg1) {};
1737
+
1738
+ /**
1739
+ * @param {(function(!jQuery.Event)|Object<string, *>)=} arg1
1740
+ * @param {function(!jQuery.Event)=} handler
1741
+ * @return {!jQuery}
1742
+ */
1743
+ jQuery.prototype.resize = function(arg1, handler) {};
1744
+
1745
+ /**
1746
+ * @param {(function(!jQuery.Event)|Object<string, *>)=} arg1
1747
+ * @param {function(!jQuery.Event)=} handler
1748
+ * @return {!jQuery}
1749
+ */
1750
+ jQuery.prototype.scroll = function(arg1, handler) {};
1751
+
1752
+ /**
1753
+ * @param {number=} value
1754
+ * @return {(number|!jQuery)}
1755
+ */
1756
+ jQuery.prototype.scrollLeft = function(value) {};
1757
+
1758
+ /**
1759
+ * @param {number=} value
1760
+ * @return {(number|!jQuery)}
1761
+ */
1762
+ jQuery.prototype.scrollTop = function(value) {};
1763
+
1764
+ /**
1765
+ * @param {(function(!jQuery.Event)|Object<string, *>)=} arg1
1766
+ * @param {function(!jQuery.Event)=} handler
1767
+ * @return {!jQuery}
1768
+ */
1769
+ jQuery.prototype.select = function(arg1, handler) {};
1770
+
1771
+ /**
1772
+ * @return {string}
1773
+ * @nosideeffects
1774
+ */
1775
+ jQuery.prototype.serialize = function() {};
1776
+
1777
+ /**
1778
+ * @return {Array<Object<string, *>>}
1779
+ * @nosideeffects
1780
+ */
1781
+ jQuery.prototype.serializeArray = function() {};
1782
+
1783
+ /**
1784
+ * @param {(string|number|function())=} duration
1785
+ * @param {(function()|string)=} arg2
1786
+ * @param {function()=} callback
1787
+ * @return {!jQuery}
1788
+ */
1789
+ jQuery.prototype.show = function(duration, arg2, callback) {};
1790
+
1791
+ /**
1792
+ * @param {jQuerySelector=} selector
1793
+ * @return {!jQuery}
1794
+ * @nosideeffects
1795
+ */
1796
+ jQuery.prototype.siblings = function(selector) {};
1797
+
1798
+ /**
1799
+ * @deprecated Please use the .length property instead.
1800
+ * @return {number}
1801
+ * @nosideeffects
1802
+ */
1803
+ jQuery.prototype.size = function() {};
1804
+
1805
+ /**
1806
+ * @param {number} start
1807
+ * @param {number=} end
1808
+ * @return {!jQuery}
1809
+ * @nosideeffects
1810
+ */
1811
+ jQuery.prototype.slice = function(start, end) {};
1812
+
1813
+ /**
1814
+ * @param {(Object<string,*>|string|number)=} optionsOrDuration
1815
+ * @param {(function()|string)=} completeOrEasing
1816
+ * @param {function()=} complete
1817
+ * @return {!jQuery}
1818
+ */
1819
+ jQuery.prototype.slideDown =
1820
+ function(optionsOrDuration, completeOrEasing, complete) {};
1821
+
1822
+ /**
1823
+ * @param {(Object<string,*>|string|number)=} optionsOrDuration
1824
+ * @param {(function()|string)=} completeOrEasing
1825
+ * @param {function()=} complete
1826
+ * @return {!jQuery}
1827
+ */
1828
+ jQuery.prototype.slideToggle =
1829
+ function(optionsOrDuration, completeOrEasing, complete) {};
1830
+
1831
+ /**
1832
+ * @param {(Object<string,*>|string|number)=} optionsOrDuration
1833
+ * @param {(function()|string)=} completeOrEasing
1834
+ * @param {function()=} complete
1835
+ * @return {!jQuery}
1836
+ */
1837
+ jQuery.prototype.slideUp =
1838
+ function(optionsOrDuration, completeOrEasing, complete) {};
1839
+
1840
+ /**
1841
+ * @param {(boolean|string)=} arg1
1842
+ * @param {boolean=} arg2
1843
+ * @param {boolean=} jumpToEnd
1844
+ * @return {!jQuery}
1845
+ */
1846
+ jQuery.prototype.stop = function(arg1, arg2, jumpToEnd) {};
1847
+
1848
+ /**
1849
+ * @param {(function(!jQuery.Event)|Object<string, *>)=} arg1
1850
+ * @param {function(!jQuery.Event)=} handler
1851
+ * @return {!jQuery}
1852
+ */
1853
+ jQuery.prototype.submit = function(arg1, handler) {};
1854
+
1855
+ /**
1856
+ * @record
1857
+ */
1858
+ function jQuerySupport() {};
1859
+
1860
+ /** @type {boolean} */
1861
+ jQuerySupport.prototype.boxModel;
1862
+
1863
+ /** @type {boolean} */
1864
+ jQuerySupport.prototype.changeBubbles;
1865
+
1866
+ /** @type {boolean} */
1867
+ jQuerySupport.prototype.cors;
1868
+
1869
+ /** @type {boolean} */
1870
+ jQuerySupport.prototype.cssFloat;
1871
+
1872
+ /** @type {boolean} */
1873
+ jQuerySupport.prototype.hrefNormalized;
1874
+
1875
+ /** @type {boolean} */
1876
+ jQuerySupport.prototype.htmlSerialize;
1877
+
1878
+ /** @type {boolean} */
1879
+ jQuerySupport.prototype.leadingWhitespace;
1880
+
1881
+ /** @type {boolean} */
1882
+ jQuerySupport.prototype.noCloneEvent;
1883
+
1884
+ /** @type {boolean} */
1885
+ jQuerySupport.prototype.opacity;
1886
+
1887
+ /** @type {boolean} */
1888
+ jQuerySupport.prototype.style;
1889
+
1890
+ /** @type {boolean} */
1891
+ jQuerySupport.prototype.submitBubbles;
1892
+
1893
+ /** @type {boolean} */
1894
+ jQuerySupport.prototype.tbody;
1895
+
1896
+ /**
1897
+ * @type {!jQuerySupport}
1898
+ * @deprecated Please try to use feature detection instead.
1899
+ */
1900
+ jQuery.support;
1901
+
1902
+ /**
1903
+ * @param {(string|number|boolean|function(number,string))=} arg1
1904
+ * @return {(string|!jQuery)}
1905
+ */
1906
+ jQuery.prototype.text = function(arg1) {};
1907
+
1908
+ /**
1909
+ * @return {Array<Element>}
1910
+ * @nosideeffects
1911
+ */
1912
+ jQuery.prototype.toArray = function() {};
1913
+
1914
+ /**
1915
+ * Refers to the method from the Effects category. There used to be a toggle
1916
+ * method on the Events category which was removed starting version 1.9.
1917
+ * @param {(number|string|Object<string,*>|boolean)=} arg1
1918
+ * @param {(function()|string)=} arg2
1919
+ * @param {function()=} arg3
1920
+ * @return {!jQuery}
1921
+ */
1922
+ jQuery.prototype.toggle = function(arg1, arg2, arg3) {};
1923
+
1924
+ /**
1925
+ * @param {(string|function(number,string,boolean))} arg1
1926
+ * @param {boolean=} flag
1927
+ * @return {!jQuery}
1928
+ */
1929
+ jQuery.prototype.toggleClass = function(arg1, flag) {};
1930
+
1931
+ /**
1932
+ * @param {(string|jQuery.Event)} arg1
1933
+ * @param {...*} var_args
1934
+ * @return {!jQuery}
1935
+ */
1936
+ jQuery.prototype.trigger = function(arg1, var_args) {};
1937
+
1938
+ /**
1939
+ * @param {string|jQuery.Event} eventType
1940
+ * @param {Array<*>=} extraParameters
1941
+ * @return {*}
1942
+ */
1943
+ jQuery.prototype.triggerHandler = function(eventType, extraParameters) {};
1944
+
1945
+ /**
1946
+ * @param {string} str
1947
+ * @return {string}
1948
+ * @nosideeffects
1949
+ */
1950
+ jQuery.trim = function(str) {};
1951
+
1952
+ /**
1953
+ * @param {*} obj
1954
+ * @return {string}
1955
+ * @nosideeffects
1956
+ */
1957
+ jQuery.type = function(obj) {};
1958
+
1959
+ /**
1960
+ * @param {(string|function(!jQuery.Event)|jQuery.Event)=} arg1
1961
+ * @param {(function(!jQuery.Event)|boolean)=} arg2
1962
+ * @return {!jQuery}
1963
+ * @deprecated Please use .off instead.
1964
+ */
1965
+ jQuery.prototype.unbind = function(arg1, arg2) {};
1966
+
1967
+ /**
1968
+ * @param {string=} arg1
1969
+ * @param {(string|Object<string,*>)=} arg2
1970
+ * @param {function(!jQuery.Event)=} handler
1971
+ * @return {!jQuery}
1972
+ * @deprecated Please use .off instead.
1973
+ */
1974
+ jQuery.prototype.undelegate = function(arg1, arg2, handler) {};
1975
+
1976
+ /**
1977
+ * @param {Array<Element>} arr
1978
+ * @return {Array<Element>}
1979
+ * @deprecated Please use .uniqueSort instead.
1980
+ */
1981
+ jQuery.unique = function(arr) {};
1982
+
1983
+ /**
1984
+ * @param {Array<Element>} arr
1985
+ * @return {Array<Element>}
1986
+ */
1987
+ jQuery.uniqueSort = function(arr) {};
1988
+
1989
+ /**
1990
+ * @param {jQuerySelector=} arg1
1991
+ * @return {!jQuery}
1992
+ */
1993
+ jQuery.prototype.unwrap = function(arg1) {};
1994
+
1995
+ /**
1996
+ * @param {(string|Array<string>|function(number,*))=} arg1
1997
+ * @return {(string|number|Array<string>|!jQuery)}
1998
+ */
1999
+ jQuery.prototype.val = function(arg1) {};
2000
+
2001
+ /**
2002
+ * Note: The official documentation (https://api.jquery.com/jQuery.when/) says
2003
+ * jQuery.when accepts deferreds, but it actually accepts any type, e.g.:
2004
+ *
2005
+ * jQuery.when(jQuery.ready, jQuery.ajax(''), jQuery('#my-element'), 1)
2006
+ *
2007
+ * If an argument is not an "observable" (a promise-like object) it is wrapped
2008
+ * into a promise.
2009
+ * @param {*} deferred
2010
+ * @param {...*} deferreds
2011
+ * @return {!jQuery.Promise}
2012
+ */
2013
+ jQuery.when = function(deferred, deferreds) {};
2014
+
2015
+ /**
2016
+ * @param {(string|number|function(number,number))=} arg1
2017
+ * @return {(number|undefined|!jQuery)}
2018
+ */
2019
+ jQuery.prototype.width = function(arg1) {};
2020
+
2021
+ /**
2022
+ * @param {(jQuerySelector|function(number))} arg1
2023
+ * @return {!jQuery}
2024
+ */
2025
+ jQuery.prototype.wrap = function(arg1) {};
2026
+
2027
+ /**
2028
+ * @param {jQuerySelector} wrappingElement
2029
+ * @return {!jQuery}
2030
+ */
2031
+ jQuery.prototype.wrapAll = function(wrappingElement) {};
2032
+
2033
+ /**
2034
+ * @param {(jQuerySelector|function(number))} arg1
2035
+ * @return {!jQuery}
2036
+ */
2037
+ jQuery.prototype.wrapInner = function(arg1) {};