This repository has been archived on 2023-06-18. You can view files and clone it, but cannot push or open issues or pull requests.
ima02/resources/defects4j-checkout-closure-1f/contrib/externs/jquery-1.4.3.js

1287 lines
30 KiB
JavaScript

/*
* Copyright 2010 The Closure Compiler Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @fileoverview Externs for jQuery 1.4.3.
* Note that some functions use different return types depending on the number
* of parameters passed in. In these cases, you may need to annotate the type
* of the result in your code, so the JSCompiler understands which type you're
* expecting. For example:
* <code>var elt = /** @type {Element} * / (foo.get(0));</code>
* @see http://api.jquery.com/
* @externs
*/
/**
* @param {(Window|Document|Element|Array.<Element>|string|jQueryObject|Array|Object|function())=} arg1
* @param {(Element|jQueryObject|Document|Object)=} arg2
* @return {jQueryObject}
*/
function $(arg1, arg2) {};
/**
* @param {(Window|Document|Element|Array.<Element>|string|jQueryObject|Array|Object|function())=} arg1
* @param {(Element|jQueryObject|Document|Object)=} arg2
* @return {jQueryObject}
*/
function jQuery(arg1, arg2) {};
/**
* @param {Object.<string,*>} settings
* @return {XMLHttpRequest}
*/
jQuery.ajax = function(settings) {};
/** @param {Object.<string,*>} options */
jQuery.ajaxSetup = function(options) {};
/** @type {boolean} */
jQuery.boxModel;
/** @type {Object.<string,*>} */
jQuery.browser;
/** @type {string} */
jQuery.browser.version;
/**
* @param {Element} container
* @param {Element} contained
* @return {boolean}
*/
jQuery.contains = function(container, contained) {};
/** @type {Object.<string, *>} */
jQuery.cssHooks;
/**
* @param {Element} elem
* @param {string=} key
* @param {Object=} value
* @return {(jQueryObject|Object)}
*/
jQuery.data = function(elem, key, value) {};
/**
* @param {Element} elem
* @param {string=} queueName
* @return {jQueryObject}
*/
jQuery.dequeue = function(elem, queueName) {};
/**
* @param {Object} collection
* @param {function(number, ?)} callback
* @return {Object}
*/
jQuery.each = function(collection, callback) {};
/** @param {string} message */
jQuery.error = function(message) {};
/**
* @constructor
* @param {string} eventType
*/
jQuery.event = function(eventType) {};
/** @type {Element} */
jQuery.event.prototype.currentTarget;
/** @type {*} */
jQuery.event.prototype.data;
/**
* @return {boolean}
* @nosideeffects
*/
jQuery.event.prototype.isDefaultPrevented = function() {};
/**
* @return {boolean}
* @nosideeffects
*/
jQuery.event.prototype.isImmediatePropagationStopped = function() {};
/**
* @return {boolean}
* @nosideeffects
*/
jQuery.event.prototype.isPropagationStopped = function() {};
/** @type {string} */
jQuery.event.prototype.namespace;
/** @type {number} */
jQuery.event.prototype.pageX;
/** @type {number} */
jQuery.event.prototype.pageY;
/** @return {undefined} */
jQuery.event.prototype.preventDefault = function() {};
/** @type {Element} */
jQuery.event.prototype.relatedTarget;
/** @type {Object} */
jQuery.event.prototype.result;
/** @return {undefined} */
jQuery.event.prototype.stopImmediatePropagation = function() {};
/** @return {undefined} */
jQuery.event.prototype.stopPropagation = function() {};
/** @type {Element} */
jQuery.event.prototype.target;
/** @type {number} */
jQuery.event.prototype.timeStamp;
/** @type {string} */
jQuery.event.prototype.type;
/** @type {string} */
jQuery.event.prototype.which;
/**
* @param {(Object|boolean)=} arg1
* @param {Object=} arg2
* @param {Object=} arg3
* @param {Object=} objectN
* @return {Object}
*/
jQuery.extend = function(arg1, arg2, arg3, objectN) {};
jQuery.fx = {};
/** @type {number} */
jQuery.fx.interval;
/** @type {boolean} */
jQuery.fx.off;
/**
* @param {string} url
* @param {(Object.<string,*>|string)=} data
* @param {function(string,string,XMLHttpRequest)=} callback
* @param {string=} dataType
* @return {XMLHttpRequest}
*/
jQuery.get = function(url, data, callback, dataType) {};
/**
* @param {string} url
* @param {Object.<string,*>=} data
* @param {function(string,string)=} callback
* @return {XMLHttpRequest}
*/
jQuery.getJSON = function(url, data, callback) {};
/**
* @param {string} url
* @param {function(string,string)=} success
* @return {XMLHttpRequest}
*/
jQuery.getScript = function(url, success) {};
/** @param {string} code */
jQuery.globalEval = function(code) {};
/**
* @param {Array} arr
* @param {function(*,number)} fnc
* @param {boolean=} invert
* @return {Array}
*/
jQuery.grep = function(arr, fnc, invert) {};
/**
* @param {*} value
* @param {Array} arr
* @return {number}
* @nosideeffects
*/
jQuery.inArray = function(value, arr) {};
/**
* @param {Object} obj
* @return {boolean}
* @nosideeffects
*/
jQuery.isArray = function(obj) {};
/**
* @param {Object} obj
* @return {boolean}
* @nosideeffects
*/
jQuery.isEmptyObject = function(obj) {};
/**
* @param {Object} obj
* @return {boolean}
* @nosideeffects
*/
jQuery.isFunction = function(obj) {};
/**
* @param {Object} obj
* @return {boolean}
* @nosideeffects
*/
jQuery.isPlainObject = function(obj) {};
/**
* @param {Object} obj
* @return {boolean}
* @nosideeffects
*/
jQuery.isWindow = function(obj) {};
/**
* @param {Element} node
* @return {boolean}
* @nosideeffects
*/
jQuery.isXMLDoc = function(node) {};
/**
* @param {Object} obj
* @return {Array}
*/
jQuery.makeArray = function(obj) {};
/**
* @param {Array} arr
* @param {function(*,number)} callback
* @return {Array}
*/
jQuery.map = function(arr, callback) {};
/**
* @param {Array} first
* @param {Array} second
* @return {Array}
*/
jQuery.merge = function(first, second) {};
/**
* @param {boolean=} removeAll
* @return {Object}
*/
jQuery.noConflict = function(removeAll) {};
/**
* @return {function()}
* @nosideeffects
*/
jQuery.noop = function() {};
/**
* @param {(Array|Object)} obj
* @param {boolean=} traditional
* @return {string}
*/
jQuery.param = function(obj, traditional) {};
/**
* @param {string} json
* @return {Object}
*/
jQuery.parseJSON = function(json) {};
/**
* @param {string} url
* @param {(Object.<string,*>|string)=} data
* @param {function(string,string,XMLHttpRequest)=} success
* @param {string=} dataType
* @return {XMLHttpRequest}
*/
jQuery.post = function(url, data, success, dataType) {};
/**
* @param {(function()|Object)} arg1
* @param {(Object|string)} arg2
* @return {function()}
*/
jQuery.proxy = function(arg1, arg2) {};
/**
* @param {Element} elem
* @param {string=} queueName
* @param {(Array|function())=} arg3
* @return {(Array|jQueryObject)}
*/
jQuery.queue = function(elem, queueName, arg3) {};
/**
* @param {Element} elem
* @param {string=} name
* @return {jQueryObject}
*/
jQuery.removeData = function(elem, name) {};
/** @const */
jQuery.support;
/** @type {boolean} */
jQuery.support.boxModel;
/** @type {boolean} */
jQuery.support.changeBubbles;
/** @type {boolean} */
jQuery.support.cssFloat;
/** @type {boolean} */
jQuery.support.hrefNormalized;
/** @type {boolean} */
jQuery.support.htmlSerialize;
/** @type {boolean} */
jQuery.support.leadingWhitespace;
/** @type {boolean} */
jQuery.support.noCloneEvent;
/** @type {boolean} */
jQuery.support.opacity;
/** @type {boolean} */
jQuery.support.scriptEval;
/** @type {boolean} */
jQuery.support.style;
/** @type {boolean} */
jQuery.support.submitBubbles;
/** @type {boolean} */
jQuery.support.tbody;
/**
* @param {string} str
* @return {string}
* @nosideeffects
*/
jQuery.trim = function(str) {};
/**
* @param {Object} obj
* @return {string}
* @nosideeffects
*/
jQuery.type = function(obj) {};
/**
* @param {Array} arr
* @return {Array}
*/
jQuery.unique = function(arr) {};
/**
* @constructor
* @private
*/
function jQueryObject() { };
/**
* @param {(Window|Document|Element|Array.<Element>|string|jQueryObject)} arg1
* @param {Element=} context
* @return {jQueryObject}
* @nosideeffects
*/
jQueryObject.prototype.add = function(arg1, context) {};
/**
* @param {(string|function(number,string))} arg1
* @return {jQueryObject}
*/
jQueryObject.prototype.addClass = function(arg1) {};
/**
* @param {(string|Element|jQueryObject|function(number))} arg1
* @return {jQueryObject}
*/
jQueryObject.prototype.after = function(arg1) {};
/**
* @param {function(jQuery.event,XMLHttpRequest,Object.<string, *>)} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.ajaxComplete = function(handler) {};
/**
* @param {function(jQuery.event,XMLHttpRequest,Object.<string, *>,*)} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.ajaxError = function(handler) {};
/**
* @param {function(jQuery.event,XMLHttpRequest,Object.<string, *>)} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.ajaxSend = function(handler) {};
/**
* @param {function()} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.ajaxStart = function(handler) {};
/**
* @param {function()} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.ajaxStop = function(handler) {};
/**
* @param {function(jQuery.event,XMLHttpRequest,Object.<string, *>)} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.ajaxSuccess = function(handler) {};
/**
* @return {jQueryObject}
* @nosideeffects
*/
jQueryObject.prototype.andSelf = function() {};
/**
* @param {Object.<string,*>} properties
* @param {(string|number|Object.<string,*>)=} arg2
* @param {string=} easing
* @param {function()=} callback
* @return {jQueryObject}
*/
jQueryObject.prototype.animate = function(properties, arg2, easing, callback) {};
/**
* @param {(string|Element|jQueryObject|function(number,string))} arg1
* @return {jQueryObject}
*/
jQueryObject.prototype.append = function(arg1) {};
/**
* @param {(Window|Document|Element|Array.<Element>|string|jQueryObject)} target
* @return {jQueryObject}
*/
jQueryObject.prototype.appendTo = function(target) {};
/**
* @param {(string|Object.<string,*>)} arg1
* @param {(Object|function(number,string))=} arg2
* @return {(string|jQueryObject)}
*/
jQueryObject.prototype.attr = function(arg1, arg2) {};
/**
* @param {(string|Element|jQueryObject|function())} arg1
* @return {jQueryObject}
*/
jQueryObject.prototype.before = function(arg1) {};
/**
* @param {(string|Object)} arg1
* @param {Object=} eventData
* @param {(function(jQuery.event)|boolean)=} arg3
* @return {jQueryObject}
*/
jQueryObject.prototype.bind = function(arg1, eventData, arg3) {};
/**
* @param {(function(jQuery.event)|Object)=} arg1
* @param {function(jQuery.event)=} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.blur = function(arg1, handler) {};
/**
* @param {(function(jQuery.event)|Object)=} arg1
* @param {function(jQuery.event)=} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.change = function(arg1, handler) {};
/**
* @param {(Window|Document|Element|Array.<Element>|string|jQueryObject)=} selector
* @return {jQueryObject}
* @nosideeffects
*/
jQueryObject.prototype.children = function(selector) {};
/**
* @param {string=} queueName
* @return {jQueryObject}
*/
jQueryObject.prototype.clearQueue = function(queueName) {};
/**
* @param {(function(jQuery.event)|Object)=} arg1
* @param {function(jQuery.event)=} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.click = function(arg1, handler) {};
/**
* @param {boolean=} withDataAndEvents
* @return {jQueryObject}
* @suppress {checkTypes} http://code.google.com/p/closure-compiler/issues/detail?id=583
*/
jQueryObject.prototype.clone = function(withDataAndEvents) {};
/**
* @param {(Window|Document|Element|Array.<Element>|string|jQueryObject|Array)} arg1
* @param {Element=} context
* @return {(jQueryObject|Array)}
* @nosideeffects
*/
jQueryObject.prototype.closest = function(arg1, context) {};
/**
* @return {jQueryObject}
* @nosideeffects
*/
jQueryObject.prototype.contents = function() {};
/** @type {Element} */
jQueryObject.prototype.context;
/**
* @param {(string|Object.<string,*>)} arg1
* @param {(string|number|function(number,*))=} arg2
* @return {(string|jQueryObject)}
*/
jQueryObject.prototype.css = function(arg1, arg2) {};
/**
* @param {(string|Object)=} arg1
* @param {Object=} value
* @return {(jQueryObject|Object)}
*/
jQueryObject.prototype.data = function(arg1, value) {};
/**
* @param {(function(jQuery.event)|Object)=} arg1
* @param {function(jQuery.event)=} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.dblclick = function(arg1, handler) {};
/**
* @param {number} duration
* @param {string=} queueName
* @return {jQueryObject}
*/
jQueryObject.prototype.delay = function(duration, queueName) {};
/**
* @param {string} selector
* @param {string} eventType
* @param {(function()|Object)} arg3
* @param {function()=} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.delegate = function(selector, eventType, arg3, handler) {};
/**
* @param {string=} queueName
* @return {jQueryObject}
*/
jQueryObject.prototype.dequeue = function(queueName) {};
/**
* @param {(Window|Document|Element|Array.<Element>|string|jQueryObject)=} selector
* @return {jQueryObject}
*/
jQueryObject.prototype.detach = function(selector) {};
/**
* @param {string=} eventType
* @param {string=} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.die = function(eventType, handler) {};
/**
* @param {function(number,Element)} fnc
* @return {jQueryObject}
*/
jQueryObject.prototype.each = function(fnc) {};
/** @return {jQueryObject} */
jQueryObject.prototype.empty = function() {};
/**
* @return {jQueryObject}
* @nosideeffects
*/
jQueryObject.prototype.end = function() {};
/**
* @param {number} arg1
* @return {jQueryObject}
* @nosideeffects
*/
jQueryObject.prototype.eq = function(arg1) {};
/**
* @param {(function(jQuery.event)|Object)=} arg1
* @param {function(jQuery.event)=} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.error = function(arg1, handler) {};
/**
* @param {(string|number)=} duration
* @param {(function()|string)=} arg2
* @param {function()=} callback
* @return {jQueryObject}
*/
jQueryObject.prototype.fadeIn = function(duration, arg2, callback) {};
/**
* @param {(string|number)=} duration
* @param {(function()|string)=} arg2
* @param {function()=} callback
* @return {jQueryObject}
*/
jQueryObject.prototype.fadeOut = function(duration, arg2, callback) {};
/**
* @param {(string|number)=} duration
* @param {number=} opacity
* @param {(function()|string)=} arg3
* @param {function()=} callback
* @return {jQueryObject}
*/
jQueryObject.prototype.fadeTo = function(duration, opacity, arg3, callback) {};
/**
* @param {(Window|Document|Element|Array.<Element>|string|jQueryObject|function(number)|Object)} arg1
* @return {jQueryObject}
*/
jQueryObject.prototype.filter = function(arg1) {};
/**
* @param {(Window|Document|Element|Array.<Element>|string|jQueryObject)} selector
* @return {jQueryObject}
* @nosideeffects
*/
jQueryObject.prototype.find = function(selector) {};
/**
* @return {jQueryObject}
* @nosideeffects
*/
jQueryObject.prototype.first = function() {};
/**
* @param {(function(jQuery.event)|Object)=} arg1
* @param {function(jQuery.event)=} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.focus = function(arg1, handler) {};
/**
* @param {(function(jQuery.event)|Object)=} arg1
* @param {function(jQuery.event)=} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.focusin = function(arg1, handler) {};
/**
* @param {(function(jQuery.event)|Object)=} arg1
* @param {function(jQuery.event)=} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.focusout = function(arg1, handler) {};
/**
* @param {number=} index
* @return {(Element|Array)}
* @nosideeffects
*/
jQueryObject.prototype.get = function(index) {};
/**
* @param {(string|Element)} arg1
* @return {jQueryObject}
* @nosideeffects
*/
jQueryObject.prototype.has = function(arg1) {};
/**
* @param {string} className
* @return {boolean}
* @nosideeffects
*/
jQueryObject.prototype.hasClass = function(className) {};
/**
* @param {(string|number|function(number,number))=} arg1
* @return {(number|jQueryObject)}
*/
jQueryObject.prototype.height = function(arg1) {};
/**
* @param {(string|number)=} duration
* @param {(function()|string)=} arg2
* @param {function()=} callback
* @return {jQueryObject}
*/
jQueryObject.prototype.hide = function(duration, arg2, callback) {};
/**
* @param {function(jQuery.event)} arg1
* @param {function(jQuery.event)=} handlerOut
* @return {jQueryObject}
*/
jQueryObject.prototype.hover = function(arg1, handlerOut) {};
/**
* @param {(string|function(number,string))=} arg1
* @return {(string|jQueryObject)}
*/
jQueryObject.prototype.html = function(arg1) {};
/**
* @param {(Window|Document|Element|Array.<Element>|string|jQueryObject)=} arg1
* @return {number}
*/
jQueryObject.prototype.index = function(arg1) {};
/**
* @return {number}
* @nosideeffects
*/
jQueryObject.prototype.innerHeight = function() {};
/**
* @return {number}
* @nosideeffects
*/
jQueryObject.prototype.innerWidth = function() {};
/**
* @param {(Window|Document|Element|Array.<Element>|string|jQueryObject)} target
* @return {jQueryObject}
*/
jQueryObject.prototype.insertAfter = function(target) {};
/**
* @param {(Window|Document|Element|Array.<Element>|string|jQueryObject)} target
* @return {jQueryObject}
*/
jQueryObject.prototype.insertBefore = function(target) {};
/**
* @param {(Window|Document|Element|Array.<Element>|string|jQueryObject)} selector
* @return {boolean}
* @nosideeffects
*/
jQueryObject.prototype.is = function(selector) {};
/**
* @param {(function(jQuery.event)|Object)=} arg1
* @param {function(jQuery.event)=} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.keydown = function(arg1, handler) {};
/**
* @param {(function(jQuery.event)|Object)=} arg1
* @param {function(jQuery.event)=} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.keypress = function(arg1, handler) {};
/**
* @param {(function(jQuery.event)|Object)=} arg1
* @param {function(jQuery.event)=} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.keyup = function(arg1, handler) {};
/**
* @return {jQueryObject}
* @nosideeffects
*/
jQueryObject.prototype.last = function() {};
/** @type {number} */
jQueryObject.prototype.length;
/**
* @param {string} eventType
* @param {(function()|Object)} arg2
* @param {function()=} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.live = function(eventType, arg2, handler) {};
/**
* @param {(function(jQuery.event)|Object|string)=} arg1
* @param {(function(jQuery.event)|Object.<string,*>|string)=} arg2
* @param {function(string,string,XMLHttpRequest)=} complete
* @return {jQueryObject}
*/
jQueryObject.prototype.load = function(arg1, arg2, complete) {};
/**
* @param {function(number,Element)} callback
* @return {jQueryObject}
*/
jQueryObject.prototype.map = function(callback) {};
/**
* @param {(function(jQuery.event)|Object)=} arg1
* @param {function(jQuery.event)=} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.mousedown = function(arg1, handler) {};
/**
* @param {(function(jQuery.event)|Object)=} arg1
* @param {function(jQuery.event)=} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.mouseenter = function(arg1, handler) {};
/**
* @param {(function(jQuery.event)|Object)=} arg1
* @param {function(jQuery.event)=} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.mouseleave = function(arg1, handler) {};
/**
* @param {(function(jQuery.event)|Object)=} arg1
* @param {function(jQuery.event)=} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.mousemove = function(arg1, handler) {};
/**
* @param {(function(jQuery.event)|Object)=} arg1
* @param {function(jQuery.event)=} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.mouseout = function(arg1, handler) {};
/**
* @param {(function(jQuery.event)|Object)=} arg1
* @param {function(jQuery.event)=} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.mouseover = function(arg1, handler) {};
/**
* @param {(function(jQuery.event)|Object)=} arg1
* @param {function(jQuery.event)=} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.mouseup = function(arg1, handler) {};
/**
* @param {(Window|Document|Element|Array.<Element>|string|jQueryObject)=} selector
* @return {jQueryObject}
* @nosideeffects
*/
jQueryObject.prototype.next = function(selector) {};
/**
* @param {string=} selector
* @return {jQueryObject}
* @nosideeffects
*/
jQueryObject.prototype.nextAll = function(selector) {};
/**
* @param {(Window|Document|Element|Array.<Element>|string|jQueryObject)=} selector
* @return {jQueryObject}
* @nosideeffects
*/
jQueryObject.prototype.nextUntil = function(selector) {};
/**
* @param {(Window|Document|Element|Array.<Element>|string|jQueryObject|function(number))} arg1
* @return {jQueryObject}
*/
jQueryObject.prototype.not = function(arg1) {};
/**
* @param {(Object|function(number,{top:number,left:number}))=} arg1
* @return {(Object|jQueryObject)}
*/
jQueryObject.prototype.offset = function(arg1) {};
/**
* @return {jQueryObject}
* @nosideeffects
*/
jQueryObject.prototype.offsetParent = function() {};
/**
* @param {string} eventType
* @param {Object=} eventData
* @param {function(jQuery.event)=} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.one = function(eventType, eventData, handler) {};
/**
* @param {boolean=} includeMargin
* @return {number}
* @nosideeffects
*/
jQueryObject.prototype.outerHeight = function(includeMargin) {};
/**
* @param {boolean=} includeMargin
* @return {number}
* @nosideeffects
*/
jQueryObject.prototype.outerWidth = function(includeMargin) {};
/**
* @param {(Window|Document|Element|Array.<Element>|string|jQueryObject)=} selector
* @return {jQueryObject}
* @nosideeffects
*/
jQueryObject.prototype.parent = function(selector) {};
/**
* @param {(Window|Document|Element|Array.<Element>|string|jQueryObject)=} selector
* @return {jQueryObject}
* @nosideeffects
*/
jQueryObject.prototype.parents = function(selector) {};
/**
* @param {(Window|Document|Element|Array.<Element>|string|jQueryObject)=} selector
* @return {jQueryObject}
* @nosideeffects
*/
jQueryObject.prototype.parentsUntil = function(selector) {};
/**
* @return {Object}
* @nosideeffects
*/
jQueryObject.prototype.position = function() {};
/**
* @param {(string|Element|jQueryObject|function(number,string))} arg1
* @return {jQueryObject}
*/
jQueryObject.prototype.prepend = function(arg1) {};
/**
* @param {(Window|Document|Element|Array.<Element>|string|jQueryObject)} target
* @return {jQueryObject}
*/
jQueryObject.prototype.prependTo = function(target) {};
/**
* @param {(Window|Document|Element|Array.<Element>|string|jQueryObject)=} selector
* @return {jQueryObject}
* @nosideeffects
*/
jQueryObject.prototype.prev = function(selector) {};
/**
* @param {(Window|Document|Element|Array.<Element>|string|jQueryObject)=} selector
* @return {jQueryObject}
* @nosideeffects
*/
jQueryObject.prototype.prevAll = function(selector) {};
/**
* @param {(Window|Document|Element|Array.<Element>|string|jQueryObject)=} selector
* @return {jQueryObject}
* @nosideeffects
*/
jQueryObject.prototype.prevUntil = function(selector) {};
/**
* @param {Array} elements
* @param {string=} name
* @param {Array=} args
* @return {jQueryObject}
*/
jQueryObject.prototype.pushStack = function(elements, name, args) {};
/**
* @param {string=} queueName
* @param {(Array|function(function()))=} arg2
* @return {(Array|jQueryObject)}
*/
jQueryObject.prototype.queue = function(queueName, arg2) {};
/**
* @param {function()} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.ready = function(handler) {};
/**
* @param {string=} selector
* @return {jQueryObject}
*/
jQueryObject.prototype.remove = function(selector) {};
/**
* @param {string} attributeName
* @return {jQueryObject}
*/
jQueryObject.prototype.removeAttr = function(attributeName) {};
/**
* @param {(string|function(number,string))=} arg1
* @return {jQueryObject}
*/
jQueryObject.prototype.removeClass = function(arg1) {};
/**
* @param {string=} name
* @return {jQueryObject}
*/
jQueryObject.prototype.removeData = function(name) {};
/** @return {jQueryObject} */
jQueryObject.prototype.replaceAll = function() {};
/**
* @param {(string|Element|jQueryObject|function())} arg1
* @return {jQueryObject}
*/
jQueryObject.prototype.replaceWith = function(arg1) {};
/**
* @param {(function(jQuery.event)|Object)=} arg1
* @param {function(jQuery.event)=} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.resize = function(arg1, handler) {};
/**
* @param {(function(jQuery.event)|Object)=} arg1
* @param {function(jQuery.event)=} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.scroll = function(arg1, handler) {};
/**
* @param {number=} value
* @return {(number|jQueryObject)}
*/
jQueryObject.prototype.scrollLeft = function(value) {};
/**
* @param {number=} value
* @return {(number|jQueryObject)}
*/
jQueryObject.prototype.scrollTop = function(value) {};
/**
* @param {(function(jQuery.event)|Object)=} arg1
* @param {function(jQuery.event)=} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.select = function(arg1, handler) {};
/** @type {string} */
jQueryObject.prototype.selector;
/**
* @return {string}
* @nosideeffects
*/
jQueryObject.prototype.serialize = function() {};
/**
* @return {Array}
* @nosideeffects
*/
jQueryObject.prototype.serializeArray = function() {};
/**
* @param {(string|number)=} duration
* @param {(function()|string)=} arg2
* @param {function()=} callback
* @return {jQueryObject}
*/
jQueryObject.prototype.show = function(duration, arg2, callback) {};
/**
* @param {(Window|Document|Element|Array.<Element>|string|jQueryObject)=} selector
* @return {jQueryObject}
* @nosideeffects
*/
jQueryObject.prototype.siblings = function(selector) {};
/**
* @return {number}
* @nosideeffects
*/
jQueryObject.prototype.size = function() {};
/**
* @param {number} start
* @param {number=} end
* @return {jQueryObject}
* @nosideeffects
*/
jQueryObject.prototype.slice = function(start, end) {};
/**
* @param {(string|number)=} duration
* @param {(function()|string)=} arg2
* @param {function()=} callback
* @return {jQueryObject}
*/
jQueryObject.prototype.slideDown = function(duration, arg2, callback) {};
/**
* @param {(string|number)=} duration
* @param {(function()|string)=} arg2
* @param {function()=} callback
* @return {jQueryObject}
*/
jQueryObject.prototype.slideToggle = function(duration, arg2, callback) {};
/**
* @param {(string|number)=} duration
* @param {(function()|string)=} arg2
* @param {function()=} callback
* @return {jQueryObject}
*/
jQueryObject.prototype.slideUp = function(duration, arg2, callback) {};
/**
* @param {boolean=} clearQueue
* @param {boolean=} jumpToEnd
* @return {jQueryObject}
*/
jQueryObject.prototype.stop = function(clearQueue, jumpToEnd) {};
/**
* @param {(function(jQuery.event)|Object)=} arg1
* @param {function(jQuery.event)=} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.submit = function(arg1, handler) {};
/**
* @param {(string|function(number,string))=} arg1
* @return {(string|jQueryObject)}
*/
jQueryObject.prototype.text = function(arg1) {};
/**
* @return {Array}
* @nosideeffects
*/
jQueryObject.prototype.toArray = function() {};
/**
* @param {(function(jQuery.event)|string|number|boolean)=} arg1
* @param {(function(jQuery.event)|string)=} arg2
* @param {function(jQuery.event)=} arg3
* @return {jQueryObject}
*/
jQueryObject.prototype.toggle = function(arg1, arg2, arg3) {};
/**
* @param {(string|function(number,string))} arg1
* @param {boolean=} flag
* @return {jQueryObject}
*/
jQueryObject.prototype.toggleClass = function(arg1, flag) {};
/**
* @param {(string|jQuery.event)} arg1
* @param {Array=} extraParameters
* @return {jQueryObject}
*/
jQueryObject.prototype.trigger = function(arg1, extraParameters) {};
/**
* @param {string} eventType
* @param {Array} extraParameters
* @return {Object}
*/
jQueryObject.prototype.triggerHandler = function(eventType, extraParameters) {};
/**
* @param {(string|Object)} arg1
* @param {(function(jQuery.event)|boolean)=} arg2
* @return {jQueryObject}
*/
jQueryObject.prototype.unbind = function(arg1, arg2) {};
/**
* @param {string=} selector
* @param {string=} eventType
* @param {function()=} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.undelegate = function(selector, eventType, handler) {};
/**
* @param {(function(jQuery.event)|Object)=} arg1
* @param {function(jQuery.event)=} handler
* @return {jQueryObject}
*/
jQueryObject.prototype.unload = function(arg1, handler) {};
/** @return {jQueryObject} */
jQueryObject.prototype.unwrap = function() {};
/**
* @param {(string|function(number,*))=} arg1
* @return {(string|Array|jQueryObject)}
*/
jQueryObject.prototype.val = function(arg1) {};
/**
* @param {(string|number|function(number,number))=} arg1
* @return {(number|jQueryObject)}
*/
jQueryObject.prototype.width = function(arg1) {};
/**
* @param {(string|Window|Document|Element|Array.<Element>|jQueryObject|function())} arg1
* @return {jQueryObject}
*/
jQueryObject.prototype.wrap = function(arg1) {};
/**
* @param {(string|Window|Document|Element|Array.<Element>|jQueryObject)} wrappingElement
* @return {jQueryObject}
*/
jQueryObject.prototype.wrapAll = function(wrappingElement) {};
/**
* @param {(string|function())} arg1
* @return {jQueryObject}
*/
jQueryObject.prototype.wrapInner = function(arg1) {};