mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
Merge remote-tracking branch 'refs/remotes/borisyankov/master'
This commit is contained in:
@@ -3217,6 +3217,10 @@ function test_not() {
|
||||
$("p").not("#selected");
|
||||
|
||||
$("p").not($("div p.selected"));
|
||||
|
||||
var el1 = $("<div/>")[0];
|
||||
var el2 = $("<div/>")[0];
|
||||
$("p").not([el1, el2]);
|
||||
}
|
||||
|
||||
function test_EventIsNewable() {
|
||||
|
||||
Vendored
+1
-1
@@ -3050,7 +3050,7 @@ interface JQuery {
|
||||
*
|
||||
* @param elements One or more DOM elements to remove from the matched set.
|
||||
*/
|
||||
not(...elements: Element[]): JQuery;
|
||||
not(elements: Element|Element[]): JQuery;
|
||||
/**
|
||||
* Remove elements from the set of matched elements.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user