@types/jquery 3.5.18 → 3.5.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- jquery/JQuery.d.ts +596 -263
- jquery/JQueryStatic.d.ts +1248 -836
- jquery/LICENSE +0 -0
- jquery/README.md +1 -1
- jquery/dist/jquery.slim.d.ts +0 -0
- jquery/index.d.ts +0 -0
- jquery/legacy.d.ts +19 -15
- jquery/misc.d.ts +1412 -699
- jquery/package.json +3 -3
jquery/JQueryStatic.d.ts
CHANGED
|
@@ -96,8 +96,11 @@ $( "<div/>", {
|
|
|
96
96
|
.appendTo( "body" );
|
|
97
97
|
```
|
|
98
98
|
*/
|
|
99
|
-
|
|
100
|
-
|
|
99
|
+
<TElement extends HTMLElement = HTMLElement>(
|
|
100
|
+
html: JQuery.htmlString,
|
|
101
|
+
ownerDocument_attributes?: Document | JQuery.PlainObject,
|
|
102
|
+
// eslint-disable-next-line @definitelytyped/no-unnecessary-generics
|
|
103
|
+
): JQuery<TElement>;
|
|
101
104
|
/**
|
|
102
105
|
* Accepts a string containing a CSS selector which is then used to match a set of elements.
|
|
103
106
|
* @param selector A string containing a selector expression
|
|
@@ -135,8 +138,11 @@ $( "div", xml.responseXML );
|
|
|
135
138
|
```
|
|
136
139
|
|
|
137
140
|
*/
|
|
138
|
-
|
|
139
|
-
|
|
141
|
+
<TElement extends Element = HTMLElement>(
|
|
142
|
+
selector: JQuery.Selector,
|
|
143
|
+
context?: Element | Document | JQuery | JQuery.Selector,
|
|
144
|
+
// eslint-disable-next-line @definitelytyped/no-unnecessary-generics
|
|
145
|
+
): JQuery<TElement>;
|
|
140
146
|
/**
|
|
141
147
|
* Return a collection of matched elements either found in the DOM based on passed argument(s) or created by passing an HTML string.
|
|
142
148
|
* @param element A DOM element to wrap in a jQuery object.
|
|
@@ -194,7 +200,7 @@ jQuery(function( $ ) {
|
|
|
194
200
|
*/
|
|
195
201
|
/* eslint-disable @definitelytyped/no-unnecessary-generics */
|
|
196
202
|
// tslint:disable-next-line:unified-signatures
|
|
197
|
-
<TElement = HTMLElement>(callback: (
|
|
203
|
+
<TElement = HTMLElement>(callback: (this: Document, $: JQueryStatic) => void): JQuery<TElement>;
|
|
198
204
|
/* eslint-enable @definitelytyped/no-unnecessary-generics */
|
|
199
205
|
/**
|
|
200
206
|
* Return a collection of matched elements either found in the DOM based on passed argument(s) or created by passing an HTML string.
|
|
@@ -293,15 +299,27 @@ $.ajax({
|
|
|
293
299
|
* @see \`{@link https://api.jquery.com/jQuery.ajaxPrefilter/ }\`
|
|
294
300
|
* @since 1.5
|
|
295
301
|
*/
|
|
296
|
-
ajaxPrefilter(
|
|
297
|
-
|
|
302
|
+
ajaxPrefilter(
|
|
303
|
+
dataTypes: string,
|
|
304
|
+
handler: (
|
|
305
|
+
options: JQuery.AjaxSettings,
|
|
306
|
+
originalOptions: JQuery.AjaxSettings,
|
|
307
|
+
jqXHR: JQuery.jqXHR,
|
|
308
|
+
) => string | void,
|
|
309
|
+
): void;
|
|
298
310
|
/**
|
|
299
311
|
* Handle custom Ajax options or modify existing options before each request is sent and before they are processed by $.ajax().
|
|
300
312
|
* @param handler A handler to set default values for future Ajax requests.
|
|
301
313
|
* @see \`{@link https://api.jquery.com/jQuery.ajaxPrefilter/ }\`
|
|
302
314
|
* @since 1.5
|
|
303
315
|
*/
|
|
304
|
-
ajaxPrefilter(
|
|
316
|
+
ajaxPrefilter(
|
|
317
|
+
handler: (
|
|
318
|
+
options: JQuery.AjaxSettings,
|
|
319
|
+
originalOptions: JQuery.AjaxSettings,
|
|
320
|
+
jqXHR: JQuery.jqXHR,
|
|
321
|
+
) => string | void,
|
|
322
|
+
): void;
|
|
305
323
|
/**
|
|
306
324
|
* Set default values for future Ajax requests. Its use is not recommended.
|
|
307
325
|
* @param options A set of key/value pairs that configure the default Ajax request. All options are optional.
|
|
@@ -325,8 +343,14 @@ $.ajax({ data: myData });
|
|
|
325
343
|
* @see \`{@link https://api.jquery.com/jQuery.ajaxTransport/ }\`
|
|
326
344
|
* @since 1.5
|
|
327
345
|
*/
|
|
328
|
-
ajaxTransport(
|
|
329
|
-
|
|
346
|
+
ajaxTransport(
|
|
347
|
+
dataType: string,
|
|
348
|
+
handler: (
|
|
349
|
+
options: JQuery.AjaxSettings,
|
|
350
|
+
originalOptions: JQuery.AjaxSettings,
|
|
351
|
+
jqXHR: JQuery.jqXHR,
|
|
352
|
+
) => JQuery.Transport | void,
|
|
353
|
+
): void;
|
|
330
354
|
/**
|
|
331
355
|
* @deprecated Deprecated since 3.3. Internal. See \`{@link https://github.com/jquery/jquery/issues/3384 }\`.
|
|
332
356
|
*/
|
|
@@ -417,7 +441,11 @@ $( "button" ).click( function() {
|
|
|
417
441
|
</html>
|
|
418
442
|
```
|
|
419
443
|
*/
|
|
420
|
-
data<T extends string | number | boolean | symbol | object | null>(
|
|
444
|
+
data<T extends string | number | boolean | symbol | object | null>(
|
|
445
|
+
element: Element | Document | Window | JQuery.PlainObject,
|
|
446
|
+
key: string,
|
|
447
|
+
value: T,
|
|
448
|
+
): T;
|
|
421
449
|
/**
|
|
422
450
|
* Returns value at named data store for the element, as set by `jQuery.data(element, name, value)`, or the full data store for the element.
|
|
423
451
|
* @param element The DOM element to query for the data.
|
|
@@ -720,7 +748,16 @@ $( "#log" ).append( JSON.stringify( object1 ) );
|
|
|
720
748
|
</html>
|
|
721
749
|
```
|
|
722
750
|
*/
|
|
723
|
-
extend<T, U, V, W, X, Y, Z>(
|
|
751
|
+
extend<T, U, V, W, X, Y, Z>(
|
|
752
|
+
deep: true,
|
|
753
|
+
target: T,
|
|
754
|
+
object1: U,
|
|
755
|
+
object2: V,
|
|
756
|
+
object3: W,
|
|
757
|
+
object4: X,
|
|
758
|
+
object5: Y,
|
|
759
|
+
object6: Z,
|
|
760
|
+
): T & U & V & W & X & Y & Z;
|
|
724
761
|
/**
|
|
725
762
|
* Merge the contents of two or more objects together into the first object.
|
|
726
763
|
* @param deep If true, the merge becomes recursive (aka. deep copy). Passing false for this argument is not supported.
|
|
@@ -767,7 +804,15 @@ $( "#log" ).append( JSON.stringify( object1 ) );
|
|
|
767
804
|
</html>
|
|
768
805
|
```
|
|
769
806
|
*/
|
|
770
|
-
extend<T, U, V, W, X, Y>(
|
|
807
|
+
extend<T, U, V, W, X, Y>(
|
|
808
|
+
deep: true,
|
|
809
|
+
target: T,
|
|
810
|
+
object1: U,
|
|
811
|
+
object2: V,
|
|
812
|
+
object3: W,
|
|
813
|
+
object4: X,
|
|
814
|
+
object5: Y,
|
|
815
|
+
): T & U & V & W & X & Y;
|
|
771
816
|
/**
|
|
772
817
|
* Merge the contents of two or more objects together into the first object.
|
|
773
818
|
* @param deep If true, the merge becomes recursive (aka. deep copy). Passing false for this argument is not supported.
|
|
@@ -1074,7 +1119,15 @@ $( "#log" ).append( "<div><b>settings -- </b>" + JSON.stringify( settings ) + "<
|
|
|
1074
1119
|
</html>
|
|
1075
1120
|
```
|
|
1076
1121
|
*/
|
|
1077
|
-
extend<T, U, V, W, X, Y, Z>(
|
|
1122
|
+
extend<T, U, V, W, X, Y, Z>(
|
|
1123
|
+
target: T,
|
|
1124
|
+
object1: U,
|
|
1125
|
+
object2: V,
|
|
1126
|
+
object3: W,
|
|
1127
|
+
object4: X,
|
|
1128
|
+
object5: Y,
|
|
1129
|
+
object6: Z,
|
|
1130
|
+
): T & U & V & W & X & Y & Z;
|
|
1078
1131
|
/**
|
|
1079
1132
|
* Merge the contents of two or more objects together into the first object.
|
|
1080
1133
|
* @param target An object that will receive the new properties if additional objects are passed in or that will
|
|
@@ -1150,7 +1203,14 @@ $( "#log" ).append( "<div><b>settings -- </b>" + JSON.stringify( settings ) + "<
|
|
|
1150
1203
|
</html>
|
|
1151
1204
|
```
|
|
1152
1205
|
*/
|
|
1153
|
-
extend<T, U, V, W, X, Y>(
|
|
1206
|
+
extend<T, U, V, W, X, Y>(
|
|
1207
|
+
target: T,
|
|
1208
|
+
object1: U,
|
|
1209
|
+
object2: V,
|
|
1210
|
+
object3: W,
|
|
1211
|
+
object4: X,
|
|
1212
|
+
object5: Y,
|
|
1213
|
+
): T & U & V & W & X & Y;
|
|
1154
1214
|
/**
|
|
1155
1215
|
* Merge the contents of two or more objects together into the first object.
|
|
1156
1216
|
* @param target An object that will receive the new properties if additional objects are passed in or that will
|
|
@@ -1536,10 +1596,12 @@ $( "#log" ).append( "<div><b>settings -- </b>" + JSON.stringify( settings ) + "<
|
|
|
1536
1596
|
* @see \`{@link https://api.jquery.com/jQuery.get/ }\`
|
|
1537
1597
|
* @since 1.0
|
|
1538
1598
|
*/
|
|
1539
|
-
get(
|
|
1599
|
+
get(
|
|
1600
|
+
url: string,
|
|
1540
1601
|
data: JQuery.PlainObject | string,
|
|
1541
1602
|
success: JQuery.jqXHR.DoneCallback | null,
|
|
1542
|
-
dataType?: string
|
|
1603
|
+
dataType?: string,
|
|
1604
|
+
): JQuery.jqXHR;
|
|
1543
1605
|
/**
|
|
1544
1606
|
* Load data from the server using a HTTP GET request.
|
|
1545
1607
|
* @param url A string containing the URL to which the request is sent.
|
|
@@ -1560,9 +1622,11 @@ $.get( "test.php", function( data ) {
|
|
|
1560
1622
|
}, "json" );
|
|
1561
1623
|
```
|
|
1562
1624
|
*/
|
|
1563
|
-
get(
|
|
1625
|
+
get(
|
|
1626
|
+
url: string,
|
|
1564
1627
|
data_success: JQuery.PlainObject | string | JQuery.jqXHR.DoneCallback | null,
|
|
1565
|
-
dataType: string
|
|
1628
|
+
dataType: string,
|
|
1629
|
+
): JQuery.jqXHR;
|
|
1566
1630
|
/**
|
|
1567
1631
|
* Load data from the server using a HTTP GET request.
|
|
1568
1632
|
* @param url A string containing the URL to which the request is sent.
|
|
@@ -1595,8 +1659,7 @@ $.get( "test.cgi", { name: "John", time: "2pm" } )
|
|
|
1595
1659
|
});
|
|
1596
1660
|
```
|
|
1597
1661
|
*/
|
|
1598
|
-
get(url: string,
|
|
1599
|
-
success_data: JQuery.jqXHR.DoneCallback | JQuery.PlainObject | string): JQuery.jqXHR;
|
|
1662
|
+
get(url: string, success_data: JQuery.jqXHR.DoneCallback | JQuery.PlainObject | string): JQuery.jqXHR;
|
|
1600
1663
|
/**
|
|
1601
1664
|
* Load data from the server using a HTTP GET request.
|
|
1602
1665
|
* @param url_settings _@param_ `url_settings`
|
|
@@ -1623,9 +1686,7 @@ $.get( "test.php" );
|
|
|
1623
1686
|
* @see \`{@link https://api.jquery.com/jQuery.getJSON/ }\`
|
|
1624
1687
|
* @since 1.0
|
|
1625
1688
|
*/
|
|
1626
|
-
getJSON(url: string,
|
|
1627
|
-
data: JQuery.PlainObject | string,
|
|
1628
|
-
success: JQuery.jqXHR.DoneCallback): JQuery.jqXHR;
|
|
1689
|
+
getJSON(url: string, data: JQuery.PlainObject | string, success: JQuery.jqXHR.DoneCallback): JQuery.jqXHR;
|
|
1629
1690
|
/**
|
|
1630
1691
|
* Load JSON-encoded data from the server using a GET HTTP request.
|
|
1631
1692
|
* @param url A string containing the URL to which the request is sent.
|
|
@@ -1695,8 +1756,7 @@ $.getJSON( "test.js", { name: "John", time: "2pm" } )
|
|
|
1695
1756
|
});
|
|
1696
1757
|
```
|
|
1697
1758
|
*/
|
|
1698
|
-
getJSON(url: string,
|
|
1699
|
-
success_data?: JQuery.jqXHR.DoneCallback | JQuery.PlainObject | string): JQuery.jqXHR;
|
|
1759
|
+
getJSON(url: string, success_data?: JQuery.jqXHR.DoneCallback | JQuery.PlainObject | string): JQuery.jqXHR;
|
|
1700
1760
|
/**
|
|
1701
1761
|
* Load a JavaScript file from the server using a GET HTTP request, then execute it.
|
|
1702
1762
|
* @param url A string containing the URL to which the request is sent.
|
|
@@ -1770,8 +1830,7 @@ $.getScript( url, function() {
|
|
|
1770
1830
|
</html>
|
|
1771
1831
|
```
|
|
1772
1832
|
*/
|
|
1773
|
-
getScript(url: string,
|
|
1774
|
-
success?: JQuery.jqXHR.DoneCallback<string | undefined>): JQuery.jqXHR<string | undefined>;
|
|
1833
|
+
getScript(url: string, success?: JQuery.jqXHR.DoneCallback<string | undefined>): JQuery.jqXHR<string | undefined>;
|
|
1775
1834
|
/**
|
|
1776
1835
|
* Load a JavaScript file from the server using a GET HTTP request, then execute it.
|
|
1777
1836
|
* @see \`{@link https://api.jquery.com/jQuery.getScript/ }\`
|
|
@@ -1864,9 +1923,7 @@ $.grep( [ 0, 1, 2 ], function( n, i ) {
|
|
|
1864
1923
|
}, true );
|
|
1865
1924
|
```
|
|
1866
1925
|
*/
|
|
1867
|
-
grep<T>(array: ArrayLike<T>,
|
|
1868
|
-
funсtion: (elementOfArray: T, indexInArray: number) => boolean,
|
|
1869
|
-
invert?: boolean): T[];
|
|
1926
|
+
grep<T>(array: ArrayLike<T>, funсtion: (elementOfArray: T, indexInArray: number) => boolean, invert?: boolean): T[];
|
|
1870
1927
|
/**
|
|
1871
1928
|
* Determine whether an element has any jQuery data associated with it.
|
|
1872
1929
|
* @param element A DOM element to be checked for data.
|
|
@@ -2302,7 +2359,14 @@ array = $.map( array, function( a, index ) {
|
|
|
2302
2359
|
});
|
|
2303
2360
|
```
|
|
2304
2361
|
*/
|
|
2305
|
-
map<T, TReturn>(
|
|
2362
|
+
map<T, TReturn>(
|
|
2363
|
+
array: T[],
|
|
2364
|
+
callback: (
|
|
2365
|
+
this: Window,
|
|
2366
|
+
elementOfArray: T,
|
|
2367
|
+
indexInArray: number,
|
|
2368
|
+
) => JQuery.TypeOrArray<TReturn> | null | undefined,
|
|
2369
|
+
): TReturn[];
|
|
2306
2370
|
/**
|
|
2307
2371
|
* Translate all items in an array or object to new array of items.
|
|
2308
2372
|
* @param obj The Object to translate.
|
|
@@ -2327,7 +2391,10 @@ var keys = $.map( dimensions, function( value, key ) {
|
|
|
2327
2391
|
});
|
|
2328
2392
|
```
|
|
2329
2393
|
*/
|
|
2330
|
-
map<T, K extends keyof T, TReturn>(
|
|
2394
|
+
map<T, K extends keyof T, TReturn>(
|
|
2395
|
+
obj: T,
|
|
2396
|
+
callback: (this: Window, propertyOfObject: T[K], key: K) => JQuery.TypeOrArray<TReturn> | null | undefined,
|
|
2397
|
+
): TReturn[];
|
|
2331
2398
|
/**
|
|
2332
2399
|
* Merge the contents of two arrays together into the first array.
|
|
2333
2400
|
* @param first The first array-like object to merge, the elements of second added.
|
|
@@ -2649,10 +2716,12 @@ $.post( "test.php", { func: "getNameAndTime" }, function( data ) {
|
|
|
2649
2716
|
}, "json");
|
|
2650
2717
|
```
|
|
2651
2718
|
*/
|
|
2652
|
-
post(
|
|
2653
|
-
|
|
2654
|
-
|
|
2655
|
-
|
|
2719
|
+
post(
|
|
2720
|
+
url: string,
|
|
2721
|
+
data: JQuery.PlainObject | string,
|
|
2722
|
+
success: JQuery.jqXHR.DoneCallback | null,
|
|
2723
|
+
dataType?: string,
|
|
2724
|
+
): JQuery.jqXHR;
|
|
2656
2725
|
/**
|
|
2657
2726
|
* Load data from the server using a HTTP POST request.
|
|
2658
2727
|
* @param url A string containing the URL to which the request is sent.
|
|
@@ -2665,9 +2734,11 @@ $.post( "test.php", { func: "getNameAndTime" }, function( data ) {
|
|
|
2665
2734
|
* @see \`{@link https://api.jquery.com/jQuery.post/ }\`
|
|
2666
2735
|
* @since 1.0
|
|
2667
2736
|
*/
|
|
2668
|
-
post(
|
|
2669
|
-
|
|
2670
|
-
|
|
2737
|
+
post(
|
|
2738
|
+
url: string,
|
|
2739
|
+
data_success: JQuery.PlainObject | string | JQuery.jqXHR.DoneCallback | null,
|
|
2740
|
+
dataType: string,
|
|
2741
|
+
): JQuery.jqXHR;
|
|
2671
2742
|
/**
|
|
2672
2743
|
* Load data from the server using a HTTP POST request.
|
|
2673
2744
|
* @param url A string containing the URL to which the request is sent.
|
|
@@ -2748,8 +2819,7 @@ $( "#searchForm" ).submit(function( event ) {
|
|
|
2748
2819
|
</html>
|
|
2749
2820
|
```
|
|
2750
2821
|
*/
|
|
2751
|
-
post(url: string,
|
|
2752
|
-
success_data: JQuery.jqXHR.DoneCallback | JQuery.PlainObject | string): JQuery.jqXHR;
|
|
2822
|
+
post(url: string, success_data: JQuery.jqXHR.DoneCallback | JQuery.PlainObject | string): JQuery.jqXHR;
|
|
2753
2823
|
/**
|
|
2754
2824
|
* Load data from the server using a HTTP POST request.
|
|
2755
2825
|
* @param url_settings _@param_ `url_settings`
|
|
@@ -2796,10 +2866,17 @@ $.post( "test.php" );
|
|
|
2796
2866
|
* @since 1.9
|
|
2797
2867
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
2798
2868
|
*/
|
|
2799
|
-
proxy<TReturn,
|
|
2800
|
-
|
|
2801
|
-
|
|
2802
|
-
|
|
2869
|
+
proxy<TReturn, A, B, C, D, E, F, G>(
|
|
2870
|
+
funсtion: (a: A, b: B, c: C, d: D, e: E, f: F, g: G) => TReturn,
|
|
2871
|
+
context: null | undefined,
|
|
2872
|
+
a: A,
|
|
2873
|
+
b: B,
|
|
2874
|
+
c: C,
|
|
2875
|
+
d: D,
|
|
2876
|
+
e: E,
|
|
2877
|
+
f: F,
|
|
2878
|
+
g: G,
|
|
2879
|
+
): () => TReturn;
|
|
2803
2880
|
/**
|
|
2804
2881
|
* Takes a function and returns a new one that will always have a particular context.
|
|
2805
2882
|
* @param funсtion The function whose context will be changed.
|
|
@@ -2814,10 +2891,16 @@ $.post( "test.php" );
|
|
|
2814
2891
|
* @since 1.9
|
|
2815
2892
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
2816
2893
|
*/
|
|
2817
|
-
proxy<TReturn,
|
|
2818
|
-
|
|
2819
|
-
|
|
2820
|
-
|
|
2894
|
+
proxy<TReturn, A, B, C, D, E, F>(
|
|
2895
|
+
funсtion: (a: A, b: B, c: C, d: D, e: E, f: F) => TReturn,
|
|
2896
|
+
context: null | undefined,
|
|
2897
|
+
a: A,
|
|
2898
|
+
b: B,
|
|
2899
|
+
c: C,
|
|
2900
|
+
d: D,
|
|
2901
|
+
e: E,
|
|
2902
|
+
f: F,
|
|
2903
|
+
): () => TReturn;
|
|
2821
2904
|
/**
|
|
2822
2905
|
* Takes a function and returns a new one that will always have a particular context.
|
|
2823
2906
|
* @param funсtion The function whose context will be changed.
|
|
@@ -2831,10 +2914,15 @@ $.post( "test.php" );
|
|
|
2831
2914
|
* @since 1.9
|
|
2832
2915
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
2833
2916
|
*/
|
|
2834
|
-
proxy<TReturn,
|
|
2835
|
-
|
|
2836
|
-
|
|
2837
|
-
|
|
2917
|
+
proxy<TReturn, A, B, C, D, E>(
|
|
2918
|
+
funсtion: (a: A, b: B, c: C, d: D, e: E) => TReturn,
|
|
2919
|
+
context: null | undefined,
|
|
2920
|
+
a: A,
|
|
2921
|
+
b: B,
|
|
2922
|
+
c: C,
|
|
2923
|
+
d: D,
|
|
2924
|
+
e: E,
|
|
2925
|
+
): () => TReturn;
|
|
2838
2926
|
/**
|
|
2839
2927
|
* Takes a function and returns a new one that will always have a particular context.
|
|
2840
2928
|
* @param funсtion The function whose context will be changed.
|
|
@@ -2847,10 +2935,14 @@ $.post( "test.php" );
|
|
|
2847
2935
|
* @since 1.9
|
|
2848
2936
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
2849
2937
|
*/
|
|
2850
|
-
proxy<TReturn,
|
|
2851
|
-
|
|
2852
|
-
|
|
2853
|
-
|
|
2938
|
+
proxy<TReturn, A, B, C, D>(
|
|
2939
|
+
funсtion: (a: A, b: B, c: C, d: D) => TReturn,
|
|
2940
|
+
context: null | undefined,
|
|
2941
|
+
a: A,
|
|
2942
|
+
b: B,
|
|
2943
|
+
c: C,
|
|
2944
|
+
d: D,
|
|
2945
|
+
): () => TReturn;
|
|
2854
2946
|
/**
|
|
2855
2947
|
* Takes a function and returns a new one that will always have a particular context.
|
|
2856
2948
|
* @param funсtion The function whose context will be changed.
|
|
@@ -2862,10 +2954,13 @@ $.post( "test.php" );
|
|
|
2862
2954
|
* @since 1.9
|
|
2863
2955
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
2864
2956
|
*/
|
|
2865
|
-
proxy<TReturn,
|
|
2866
|
-
|
|
2867
|
-
|
|
2868
|
-
|
|
2957
|
+
proxy<TReturn, A, B, C>(
|
|
2958
|
+
funсtion: (a: A, b: B, c: C) => TReturn,
|
|
2959
|
+
context: null | undefined,
|
|
2960
|
+
a: A,
|
|
2961
|
+
b: B,
|
|
2962
|
+
c: C,
|
|
2963
|
+
): () => TReturn;
|
|
2869
2964
|
/**
|
|
2870
2965
|
* Takes a function and returns a new one that will always have a particular context.
|
|
2871
2966
|
* @param funсtion The function whose context will be changed.
|
|
@@ -2876,10 +2971,7 @@ $.post( "test.php" );
|
|
|
2876
2971
|
* @since 1.9
|
|
2877
2972
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
2878
2973
|
*/
|
|
2879
|
-
proxy<TReturn,
|
|
2880
|
-
A, B>(funсtion: (a: A, b: B) => TReturn,
|
|
2881
|
-
context: null | undefined,
|
|
2882
|
-
a: A, b: B): () => TReturn;
|
|
2974
|
+
proxy<TReturn, A, B>(funсtion: (a: A, b: B) => TReturn, context: null | undefined, a: A, b: B): () => TReturn;
|
|
2883
2975
|
/**
|
|
2884
2976
|
* Takes a function and returns a new one that will always have a particular context.
|
|
2885
2977
|
* @param funсtion The function whose context will be changed.
|
|
@@ -2889,10 +2981,7 @@ $.post( "test.php" );
|
|
|
2889
2981
|
* @since 1.9
|
|
2890
2982
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
2891
2983
|
*/
|
|
2892
|
-
proxy<TReturn,
|
|
2893
|
-
A>(funсtion: (a: A) => TReturn,
|
|
2894
|
-
context: null | undefined,
|
|
2895
|
-
a: A): () => TReturn;
|
|
2984
|
+
proxy<TReturn, A>(funсtion: (a: A) => TReturn, context: null | undefined, a: A): () => TReturn;
|
|
2896
2985
|
/**
|
|
2897
2986
|
* Takes a function and returns a new one that will always have a particular context.
|
|
2898
2987
|
* @param funсtion The function whose context will be changed.
|
|
@@ -2901,8 +2990,7 @@ $.post( "test.php" );
|
|
|
2901
2990
|
* @since 1.9
|
|
2902
2991
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
2903
2992
|
*/
|
|
2904
|
-
proxy<TReturn>(funсtion: () => TReturn,
|
|
2905
|
-
context: null | undefined): () => TReturn;
|
|
2993
|
+
proxy<TReturn>(funсtion: () => TReturn, context: null | undefined): () => TReturn;
|
|
2906
2994
|
|
|
2907
2995
|
// #endregion
|
|
2908
2996
|
|
|
@@ -2924,12 +3012,17 @@ $.post( "test.php" );
|
|
|
2924
3012
|
* @since 1.9
|
|
2925
3013
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
2926
3014
|
*/
|
|
2927
|
-
proxy<TReturn,
|
|
2928
|
-
A, B, C, D, E, F, G,
|
|
2929
|
-
|
|
2930
|
-
|
|
2931
|
-
|
|
2932
|
-
|
|
3015
|
+
proxy<TReturn, A, B, C, D, E, F, G, T>(
|
|
3016
|
+
funсtion: (a: A, b: B, c: C, d: D, e: E, f: F, g: G, t: T) => TReturn,
|
|
3017
|
+
context: null | undefined,
|
|
3018
|
+
a: A,
|
|
3019
|
+
b: B,
|
|
3020
|
+
c: C,
|
|
3021
|
+
d: D,
|
|
3022
|
+
e: E,
|
|
3023
|
+
f: F,
|
|
3024
|
+
g: G,
|
|
3025
|
+
): (t: T) => TReturn;
|
|
2933
3026
|
/**
|
|
2934
3027
|
* Takes a function and returns a new one that will always have a particular context.
|
|
2935
3028
|
* @param funсtion The function whose context will be changed.
|
|
@@ -2944,12 +3037,16 @@ $.post( "test.php" );
|
|
|
2944
3037
|
* @since 1.9
|
|
2945
3038
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
2946
3039
|
*/
|
|
2947
|
-
proxy<TReturn,
|
|
2948
|
-
A, B, C, D, E, F,
|
|
2949
|
-
|
|
2950
|
-
|
|
2951
|
-
|
|
2952
|
-
|
|
3040
|
+
proxy<TReturn, A, B, C, D, E, F, T>(
|
|
3041
|
+
funсtion: (a: A, b: B, c: C, d: D, e: E, f: F, t: T) => TReturn,
|
|
3042
|
+
context: null | undefined,
|
|
3043
|
+
a: A,
|
|
3044
|
+
b: B,
|
|
3045
|
+
c: C,
|
|
3046
|
+
d: D,
|
|
3047
|
+
e: E,
|
|
3048
|
+
f: F,
|
|
3049
|
+
): (t: T) => TReturn;
|
|
2953
3050
|
/**
|
|
2954
3051
|
* Takes a function and returns a new one that will always have a particular context.
|
|
2955
3052
|
* @param funсtion The function whose context will be changed.
|
|
@@ -2963,12 +3060,15 @@ $.post( "test.php" );
|
|
|
2963
3060
|
* @since 1.9
|
|
2964
3061
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
2965
3062
|
*/
|
|
2966
|
-
proxy<TReturn,
|
|
2967
|
-
A, B, C, D, E,
|
|
2968
|
-
|
|
2969
|
-
|
|
2970
|
-
|
|
2971
|
-
|
|
3063
|
+
proxy<TReturn, A, B, C, D, E, T>(
|
|
3064
|
+
funсtion: (a: A, b: B, c: C, d: D, e: E, t: T) => TReturn,
|
|
3065
|
+
context: null | undefined,
|
|
3066
|
+
a: A,
|
|
3067
|
+
b: B,
|
|
3068
|
+
c: C,
|
|
3069
|
+
d: D,
|
|
3070
|
+
e: E,
|
|
3071
|
+
): (t: T) => TReturn;
|
|
2972
3072
|
/**
|
|
2973
3073
|
* Takes a function and returns a new one that will always have a particular context.
|
|
2974
3074
|
* @param funсtion The function whose context will be changed.
|
|
@@ -2981,12 +3081,14 @@ $.post( "test.php" );
|
|
|
2981
3081
|
* @since 1.9
|
|
2982
3082
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
2983
3083
|
*/
|
|
2984
|
-
proxy<TReturn,
|
|
2985
|
-
A, B, C, D,
|
|
2986
|
-
|
|
2987
|
-
|
|
2988
|
-
|
|
2989
|
-
|
|
3084
|
+
proxy<TReturn, A, B, C, D, T>(
|
|
3085
|
+
funсtion: (a: A, b: B, c: C, d: D, t: T) => TReturn,
|
|
3086
|
+
context: null | undefined,
|
|
3087
|
+
a: A,
|
|
3088
|
+
b: B,
|
|
3089
|
+
c: C,
|
|
3090
|
+
d: D,
|
|
3091
|
+
): (t: T) => TReturn;
|
|
2990
3092
|
/**
|
|
2991
3093
|
* Takes a function and returns a new one that will always have a particular context.
|
|
2992
3094
|
* @param funсtion The function whose context will be changed.
|
|
@@ -2998,12 +3100,13 @@ $.post( "test.php" );
|
|
|
2998
3100
|
* @since 1.9
|
|
2999
3101
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3000
3102
|
*/
|
|
3001
|
-
proxy<TReturn,
|
|
3002
|
-
A, B, C,
|
|
3003
|
-
|
|
3004
|
-
|
|
3005
|
-
|
|
3006
|
-
|
|
3103
|
+
proxy<TReturn, A, B, C, T>(
|
|
3104
|
+
funсtion: (a: A, b: B, c: C, t: T) => TReturn,
|
|
3105
|
+
context: null | undefined,
|
|
3106
|
+
a: A,
|
|
3107
|
+
b: B,
|
|
3108
|
+
c: C,
|
|
3109
|
+
): (t: T) => TReturn;
|
|
3007
3110
|
/**
|
|
3008
3111
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3009
3112
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3014,12 +3117,12 @@ $.post( "test.php" );
|
|
|
3014
3117
|
* @since 1.9
|
|
3015
3118
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3016
3119
|
*/
|
|
3017
|
-
proxy<TReturn,
|
|
3018
|
-
A, B,
|
|
3019
|
-
|
|
3020
|
-
|
|
3021
|
-
|
|
3022
|
-
|
|
3120
|
+
proxy<TReturn, A, B, T>(
|
|
3121
|
+
funсtion: (a: A, b: B, t: T) => TReturn,
|
|
3122
|
+
context: null | undefined,
|
|
3123
|
+
a: A,
|
|
3124
|
+
b: B,
|
|
3125
|
+
): (t: T) => TReturn;
|
|
3023
3126
|
/**
|
|
3024
3127
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3025
3128
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3029,12 +3132,7 @@ $.post( "test.php" );
|
|
|
3029
3132
|
* @since 1.9
|
|
3030
3133
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3031
3134
|
*/
|
|
3032
|
-
proxy<TReturn,
|
|
3033
|
-
A,
|
|
3034
|
-
T>(funсtion: (a: A,
|
|
3035
|
-
t: T) => TReturn,
|
|
3036
|
-
context: null | undefined,
|
|
3037
|
-
a: A): (t: T) => TReturn;
|
|
3135
|
+
proxy<TReturn, A, T>(funсtion: (a: A, t: T) => TReturn, context: null | undefined, a: A): (t: T) => TReturn;
|
|
3038
3136
|
/**
|
|
3039
3137
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3040
3138
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3043,9 +3141,7 @@ $.post( "test.php" );
|
|
|
3043
3141
|
* @since 1.9
|
|
3044
3142
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3045
3143
|
*/
|
|
3046
|
-
proxy<TReturn,
|
|
3047
|
-
T>(funсtion: (t: T) => TReturn,
|
|
3048
|
-
context: null | undefined): (t: T) => TReturn;
|
|
3144
|
+
proxy<TReturn, T>(funсtion: (t: T) => TReturn, context: null | undefined): (t: T) => TReturn;
|
|
3049
3145
|
|
|
3050
3146
|
// #endregion
|
|
3051
3147
|
|
|
@@ -3067,12 +3163,17 @@ $.post( "test.php" );
|
|
|
3067
3163
|
* @since 1.9
|
|
3068
3164
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3069
3165
|
*/
|
|
3070
|
-
proxy<TReturn,
|
|
3071
|
-
A, B, C, D, E, F, G,
|
|
3072
|
-
|
|
3073
|
-
|
|
3074
|
-
|
|
3075
|
-
|
|
3166
|
+
proxy<TReturn, A, B, C, D, E, F, G, T, U>(
|
|
3167
|
+
funсtion: (a: A, b: B, c: C, d: D, e: E, f: F, g: G, t: T, u: U) => TReturn,
|
|
3168
|
+
context: null | undefined,
|
|
3169
|
+
a: A,
|
|
3170
|
+
b: B,
|
|
3171
|
+
c: C,
|
|
3172
|
+
d: D,
|
|
3173
|
+
e: E,
|
|
3174
|
+
f: F,
|
|
3175
|
+
g: G,
|
|
3176
|
+
): (t: T, u: U) => TReturn;
|
|
3076
3177
|
/**
|
|
3077
3178
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3078
3179
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3087,12 +3188,16 @@ $.post( "test.php" );
|
|
|
3087
3188
|
* @since 1.9
|
|
3088
3189
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3089
3190
|
*/
|
|
3090
|
-
proxy<TReturn,
|
|
3091
|
-
A, B, C, D, E, F,
|
|
3092
|
-
|
|
3093
|
-
|
|
3094
|
-
|
|
3095
|
-
|
|
3191
|
+
proxy<TReturn, A, B, C, D, E, F, T, U>(
|
|
3192
|
+
funсtion: (a: A, b: B, c: C, d: D, e: E, f: F, t: T, u: U) => TReturn,
|
|
3193
|
+
context: null | undefined,
|
|
3194
|
+
a: A,
|
|
3195
|
+
b: B,
|
|
3196
|
+
c: C,
|
|
3197
|
+
d: D,
|
|
3198
|
+
e: E,
|
|
3199
|
+
f: F,
|
|
3200
|
+
): (t: T, u: U) => TReturn;
|
|
3096
3201
|
/**
|
|
3097
3202
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3098
3203
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3106,12 +3211,15 @@ $.post( "test.php" );
|
|
|
3106
3211
|
* @since 1.9
|
|
3107
3212
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3108
3213
|
*/
|
|
3109
|
-
proxy<TReturn,
|
|
3110
|
-
A, B, C, D, E,
|
|
3111
|
-
|
|
3112
|
-
|
|
3113
|
-
|
|
3114
|
-
|
|
3214
|
+
proxy<TReturn, A, B, C, D, E, T, U>(
|
|
3215
|
+
funсtion: (a: A, b: B, c: C, d: D, e: E, t: T, u: U) => TReturn,
|
|
3216
|
+
context: null | undefined,
|
|
3217
|
+
a: A,
|
|
3218
|
+
b: B,
|
|
3219
|
+
c: C,
|
|
3220
|
+
d: D,
|
|
3221
|
+
e: E,
|
|
3222
|
+
): (t: T, u: U) => TReturn;
|
|
3115
3223
|
/**
|
|
3116
3224
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3117
3225
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3124,12 +3232,14 @@ $.post( "test.php" );
|
|
|
3124
3232
|
* @since 1.9
|
|
3125
3233
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3126
3234
|
*/
|
|
3127
|
-
proxy<TReturn,
|
|
3128
|
-
A, B, C, D,
|
|
3129
|
-
|
|
3130
|
-
|
|
3131
|
-
|
|
3132
|
-
|
|
3235
|
+
proxy<TReturn, A, B, C, D, T, U>(
|
|
3236
|
+
funсtion: (a: A, b: B, c: C, d: D, t: T, u: U) => TReturn,
|
|
3237
|
+
context: null | undefined,
|
|
3238
|
+
a: A,
|
|
3239
|
+
b: B,
|
|
3240
|
+
c: C,
|
|
3241
|
+
d: D,
|
|
3242
|
+
): (t: T, u: U) => TReturn;
|
|
3133
3243
|
/**
|
|
3134
3244
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3135
3245
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3141,12 +3251,13 @@ $.post( "test.php" );
|
|
|
3141
3251
|
* @since 1.9
|
|
3142
3252
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3143
3253
|
*/
|
|
3144
|
-
proxy<TReturn,
|
|
3145
|
-
A, B, C,
|
|
3146
|
-
|
|
3147
|
-
|
|
3148
|
-
|
|
3149
|
-
|
|
3254
|
+
proxy<TReturn, A, B, C, T, U>(
|
|
3255
|
+
funсtion: (a: A, b: B, c: C, t: T, u: U) => TReturn,
|
|
3256
|
+
context: null | undefined,
|
|
3257
|
+
a: A,
|
|
3258
|
+
b: B,
|
|
3259
|
+
c: C,
|
|
3260
|
+
): (t: T, u: U) => TReturn;
|
|
3150
3261
|
/**
|
|
3151
3262
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3152
3263
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3157,12 +3268,12 @@ $.post( "test.php" );
|
|
|
3157
3268
|
* @since 1.9
|
|
3158
3269
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3159
3270
|
*/
|
|
3160
|
-
proxy<TReturn,
|
|
3161
|
-
A, B,
|
|
3162
|
-
|
|
3163
|
-
|
|
3164
|
-
|
|
3165
|
-
|
|
3271
|
+
proxy<TReturn, A, B, T, U>(
|
|
3272
|
+
funсtion: (a: A, b: B, t: T, u: U) => TReturn,
|
|
3273
|
+
context: null | undefined,
|
|
3274
|
+
a: A,
|
|
3275
|
+
b: B,
|
|
3276
|
+
): (t: T, u: U) => TReturn;
|
|
3166
3277
|
/**
|
|
3167
3278
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3168
3279
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3172,12 +3283,11 @@ $.post( "test.php" );
|
|
|
3172
3283
|
* @since 1.9
|
|
3173
3284
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3174
3285
|
*/
|
|
3175
|
-
proxy<TReturn,
|
|
3176
|
-
A,
|
|
3177
|
-
|
|
3178
|
-
|
|
3179
|
-
|
|
3180
|
-
a: A): (t: T, u: U) => TReturn;
|
|
3286
|
+
proxy<TReturn, A, T, U>(
|
|
3287
|
+
funсtion: (a: A, t: T, u: U) => TReturn,
|
|
3288
|
+
context: null | undefined,
|
|
3289
|
+
a: A,
|
|
3290
|
+
): (t: T, u: U) => TReturn;
|
|
3181
3291
|
/**
|
|
3182
3292
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3183
3293
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3186,9 +3296,7 @@ $.post( "test.php" );
|
|
|
3186
3296
|
* @since 1.9
|
|
3187
3297
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3188
3298
|
*/
|
|
3189
|
-
proxy<TReturn,
|
|
3190
|
-
T, U>(funсtion: (t: T, u: U) => TReturn,
|
|
3191
|
-
context: null | undefined): (t: T, u: U) => TReturn;
|
|
3299
|
+
proxy<TReturn, T, U>(funсtion: (t: T, u: U) => TReturn, context: null | undefined): (t: T, u: U) => TReturn;
|
|
3192
3300
|
|
|
3193
3301
|
// #endregion
|
|
3194
3302
|
|
|
@@ -3210,12 +3318,17 @@ $.post( "test.php" );
|
|
|
3210
3318
|
* @since 1.9
|
|
3211
3319
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3212
3320
|
*/
|
|
3213
|
-
proxy<TReturn,
|
|
3214
|
-
A, B, C, D, E, F, G,
|
|
3215
|
-
|
|
3216
|
-
|
|
3217
|
-
|
|
3218
|
-
|
|
3321
|
+
proxy<TReturn, A, B, C, D, E, F, G, T, U, V>(
|
|
3322
|
+
funсtion: (a: A, b: B, c: C, d: D, e: E, f: F, g: G, t: T, u: U, v: V) => TReturn,
|
|
3323
|
+
context: null | undefined,
|
|
3324
|
+
a: A,
|
|
3325
|
+
b: B,
|
|
3326
|
+
c: C,
|
|
3327
|
+
d: D,
|
|
3328
|
+
e: E,
|
|
3329
|
+
f: F,
|
|
3330
|
+
g: G,
|
|
3331
|
+
): (t: T, u: U, v: V) => TReturn;
|
|
3219
3332
|
/**
|
|
3220
3333
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3221
3334
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3230,12 +3343,16 @@ $.post( "test.php" );
|
|
|
3230
3343
|
* @since 1.9
|
|
3231
3344
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3232
3345
|
*/
|
|
3233
|
-
proxy<TReturn,
|
|
3234
|
-
A, B, C, D, E, F,
|
|
3235
|
-
|
|
3236
|
-
|
|
3237
|
-
|
|
3238
|
-
|
|
3346
|
+
proxy<TReturn, A, B, C, D, E, F, T, U, V>(
|
|
3347
|
+
funсtion: (a: A, b: B, c: C, d: D, e: E, f: F, t: T, u: U, v: V) => TReturn,
|
|
3348
|
+
context: null | undefined,
|
|
3349
|
+
a: A,
|
|
3350
|
+
b: B,
|
|
3351
|
+
c: C,
|
|
3352
|
+
d: D,
|
|
3353
|
+
e: E,
|
|
3354
|
+
f: F,
|
|
3355
|
+
): (t: T, u: U, v: V) => TReturn;
|
|
3239
3356
|
/**
|
|
3240
3357
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3241
3358
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3249,12 +3366,15 @@ $.post( "test.php" );
|
|
|
3249
3366
|
* @since 1.9
|
|
3250
3367
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3251
3368
|
*/
|
|
3252
|
-
proxy<TReturn,
|
|
3253
|
-
A, B, C, D, E,
|
|
3254
|
-
|
|
3255
|
-
|
|
3256
|
-
|
|
3257
|
-
|
|
3369
|
+
proxy<TReturn, A, B, C, D, E, T, U, V>(
|
|
3370
|
+
funсtion: (a: A, b: B, c: C, d: D, e: E, t: T, u: U, v: V) => TReturn,
|
|
3371
|
+
context: null | undefined,
|
|
3372
|
+
a: A,
|
|
3373
|
+
b: B,
|
|
3374
|
+
c: C,
|
|
3375
|
+
d: D,
|
|
3376
|
+
e: E,
|
|
3377
|
+
): (t: T, u: U, v: V) => TReturn;
|
|
3258
3378
|
/**
|
|
3259
3379
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3260
3380
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3267,12 +3387,14 @@ $.post( "test.php" );
|
|
|
3267
3387
|
* @since 1.9
|
|
3268
3388
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3269
3389
|
*/
|
|
3270
|
-
proxy<TReturn,
|
|
3271
|
-
A, B, C, D,
|
|
3272
|
-
|
|
3273
|
-
|
|
3274
|
-
|
|
3275
|
-
|
|
3390
|
+
proxy<TReturn, A, B, C, D, T, U, V>(
|
|
3391
|
+
funсtion: (a: A, b: B, c: C, d: D, t: T, u: U, v: V) => TReturn,
|
|
3392
|
+
context: null | undefined,
|
|
3393
|
+
a: A,
|
|
3394
|
+
b: B,
|
|
3395
|
+
c: C,
|
|
3396
|
+
d: D,
|
|
3397
|
+
): (t: T, u: U, v: V) => TReturn;
|
|
3276
3398
|
/**
|
|
3277
3399
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3278
3400
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3284,12 +3406,13 @@ $.post( "test.php" );
|
|
|
3284
3406
|
* @since 1.9
|
|
3285
3407
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3286
3408
|
*/
|
|
3287
|
-
proxy<TReturn,
|
|
3288
|
-
A, B, C,
|
|
3289
|
-
|
|
3290
|
-
|
|
3291
|
-
|
|
3292
|
-
|
|
3409
|
+
proxy<TReturn, A, B, C, T, U, V>(
|
|
3410
|
+
funсtion: (a: A, b: B, c: C, t: T, u: U, v: V) => TReturn,
|
|
3411
|
+
context: null | undefined,
|
|
3412
|
+
a: A,
|
|
3413
|
+
b: B,
|
|
3414
|
+
c: C,
|
|
3415
|
+
): (t: T, u: U, v: V) => TReturn;
|
|
3293
3416
|
/**
|
|
3294
3417
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3295
3418
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3300,12 +3423,12 @@ $.post( "test.php" );
|
|
|
3300
3423
|
* @since 1.9
|
|
3301
3424
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3302
3425
|
*/
|
|
3303
|
-
proxy<TReturn,
|
|
3304
|
-
A, B,
|
|
3305
|
-
|
|
3306
|
-
|
|
3307
|
-
|
|
3308
|
-
|
|
3426
|
+
proxy<TReturn, A, B, T, U, V>(
|
|
3427
|
+
funсtion: (a: A, b: B, t: T, u: U, v: V) => TReturn,
|
|
3428
|
+
context: null | undefined,
|
|
3429
|
+
a: A,
|
|
3430
|
+
b: B,
|
|
3431
|
+
): (t: T, u: U, v: V) => TReturn;
|
|
3309
3432
|
/**
|
|
3310
3433
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3311
3434
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3315,12 +3438,11 @@ $.post( "test.php" );
|
|
|
3315
3438
|
* @since 1.9
|
|
3316
3439
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3317
3440
|
*/
|
|
3318
|
-
proxy<TReturn,
|
|
3319
|
-
A,
|
|
3320
|
-
|
|
3321
|
-
|
|
3322
|
-
|
|
3323
|
-
a: A): (t: T, u: U, v: V) => TReturn;
|
|
3441
|
+
proxy<TReturn, A, T, U, V>(
|
|
3442
|
+
funсtion: (a: A, t: T, u: U, v: V) => TReturn,
|
|
3443
|
+
context: null | undefined,
|
|
3444
|
+
a: A,
|
|
3445
|
+
): (t: T, u: U, v: V) => TReturn;
|
|
3324
3446
|
/**
|
|
3325
3447
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3326
3448
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3329,9 +3451,10 @@ $.post( "test.php" );
|
|
|
3329
3451
|
* @since 1.9
|
|
3330
3452
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3331
3453
|
*/
|
|
3332
|
-
proxy<TReturn,
|
|
3333
|
-
|
|
3334
|
-
|
|
3454
|
+
proxy<TReturn, T, U, V>(
|
|
3455
|
+
funсtion: (t: T, u: U, v: V) => TReturn,
|
|
3456
|
+
context: null | undefined,
|
|
3457
|
+
): (t: T, u: U, v: V) => TReturn;
|
|
3335
3458
|
|
|
3336
3459
|
// #endregion
|
|
3337
3460
|
|
|
@@ -3353,12 +3476,17 @@ $.post( "test.php" );
|
|
|
3353
3476
|
* @since 1.9
|
|
3354
3477
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3355
3478
|
*/
|
|
3356
|
-
proxy<TReturn,
|
|
3357
|
-
A, B, C, D, E, F, G,
|
|
3358
|
-
|
|
3359
|
-
|
|
3360
|
-
|
|
3361
|
-
|
|
3479
|
+
proxy<TReturn, A, B, C, D, E, F, G, T, U, V, W>(
|
|
3480
|
+
funсtion: (a: A, b: B, c: C, d: D, e: E, f: F, g: G, t: T, u: U, v: V, w: W) => TReturn,
|
|
3481
|
+
context: null | undefined,
|
|
3482
|
+
a: A,
|
|
3483
|
+
b: B,
|
|
3484
|
+
c: C,
|
|
3485
|
+
d: D,
|
|
3486
|
+
e: E,
|
|
3487
|
+
f: F,
|
|
3488
|
+
g: G,
|
|
3489
|
+
): (t: T, u: U, v: V, w: W) => TReturn;
|
|
3362
3490
|
/**
|
|
3363
3491
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3364
3492
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3373,12 +3501,16 @@ $.post( "test.php" );
|
|
|
3373
3501
|
* @since 1.9
|
|
3374
3502
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3375
3503
|
*/
|
|
3376
|
-
proxy<TReturn,
|
|
3377
|
-
A, B, C, D, E, F,
|
|
3378
|
-
|
|
3379
|
-
|
|
3380
|
-
|
|
3381
|
-
|
|
3504
|
+
proxy<TReturn, A, B, C, D, E, F, T, U, V, W>(
|
|
3505
|
+
funсtion: (a: A, b: B, c: C, d: D, e: E, f: F, t: T, u: U, v: V, w: W) => TReturn,
|
|
3506
|
+
context: null | undefined,
|
|
3507
|
+
a: A,
|
|
3508
|
+
b: B,
|
|
3509
|
+
c: C,
|
|
3510
|
+
d: D,
|
|
3511
|
+
e: E,
|
|
3512
|
+
f: F,
|
|
3513
|
+
): (t: T, u: U, v: V, w: W) => TReturn;
|
|
3382
3514
|
/**
|
|
3383
3515
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3384
3516
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3392,12 +3524,15 @@ $.post( "test.php" );
|
|
|
3392
3524
|
* @since 1.9
|
|
3393
3525
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3394
3526
|
*/
|
|
3395
|
-
proxy<TReturn,
|
|
3396
|
-
A, B, C, D, E,
|
|
3397
|
-
|
|
3398
|
-
|
|
3399
|
-
|
|
3400
|
-
|
|
3527
|
+
proxy<TReturn, A, B, C, D, E, T, U, V, W>(
|
|
3528
|
+
funсtion: (a: A, b: B, c: C, d: D, e: E, t: T, u: U, v: V, w: W) => TReturn,
|
|
3529
|
+
context: null | undefined,
|
|
3530
|
+
a: A,
|
|
3531
|
+
b: B,
|
|
3532
|
+
c: C,
|
|
3533
|
+
d: D,
|
|
3534
|
+
e: E,
|
|
3535
|
+
): (t: T, u: U, v: V, w: W) => TReturn;
|
|
3401
3536
|
/**
|
|
3402
3537
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3403
3538
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3410,12 +3545,14 @@ $.post( "test.php" );
|
|
|
3410
3545
|
* @since 1.9
|
|
3411
3546
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3412
3547
|
*/
|
|
3413
|
-
proxy<TReturn,
|
|
3414
|
-
A, B, C, D,
|
|
3415
|
-
|
|
3416
|
-
|
|
3417
|
-
|
|
3418
|
-
|
|
3548
|
+
proxy<TReturn, A, B, C, D, T, U, V, W>(
|
|
3549
|
+
funсtion: (a: A, b: B, c: C, d: D, t: T, u: U, v: V, w: W) => TReturn,
|
|
3550
|
+
context: null | undefined,
|
|
3551
|
+
a: A,
|
|
3552
|
+
b: B,
|
|
3553
|
+
c: C,
|
|
3554
|
+
d: D,
|
|
3555
|
+
): (t: T, u: U, v: V, w: W) => TReturn;
|
|
3419
3556
|
/**
|
|
3420
3557
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3421
3558
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3427,12 +3564,13 @@ $.post( "test.php" );
|
|
|
3427
3564
|
* @since 1.9
|
|
3428
3565
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3429
3566
|
*/
|
|
3430
|
-
proxy<TReturn,
|
|
3431
|
-
A, B, C,
|
|
3432
|
-
|
|
3433
|
-
|
|
3434
|
-
|
|
3435
|
-
|
|
3567
|
+
proxy<TReturn, A, B, C, T, U, V, W>(
|
|
3568
|
+
funсtion: (a: A, b: B, c: C, t: T, u: U, v: V, w: W) => TReturn,
|
|
3569
|
+
context: null | undefined,
|
|
3570
|
+
a: A,
|
|
3571
|
+
b: B,
|
|
3572
|
+
c: C,
|
|
3573
|
+
): (t: T, u: U, v: V, w: W) => TReturn;
|
|
3436
3574
|
/**
|
|
3437
3575
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3438
3576
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3443,12 +3581,12 @@ $.post( "test.php" );
|
|
|
3443
3581
|
* @since 1.9
|
|
3444
3582
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3445
3583
|
*/
|
|
3446
|
-
proxy<TReturn,
|
|
3447
|
-
A, B,
|
|
3448
|
-
|
|
3449
|
-
|
|
3450
|
-
|
|
3451
|
-
|
|
3584
|
+
proxy<TReturn, A, B, T, U, V, W>(
|
|
3585
|
+
funсtion: (a: A, b: B, t: T, u: U, v: V, w: W) => TReturn,
|
|
3586
|
+
context: null | undefined,
|
|
3587
|
+
a: A,
|
|
3588
|
+
b: B,
|
|
3589
|
+
): (t: T, u: U, v: V, w: W) => TReturn;
|
|
3452
3590
|
/**
|
|
3453
3591
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3454
3592
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3458,12 +3596,11 @@ $.post( "test.php" );
|
|
|
3458
3596
|
* @since 1.9
|
|
3459
3597
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3460
3598
|
*/
|
|
3461
|
-
proxy<TReturn,
|
|
3462
|
-
A,
|
|
3463
|
-
|
|
3464
|
-
|
|
3465
|
-
|
|
3466
|
-
a: A): (t: T, u: U, v: V, w: W) => TReturn;
|
|
3599
|
+
proxy<TReturn, A, T, U, V, W>(
|
|
3600
|
+
funсtion: (a: A, t: T, u: U, v: V, w: W) => TReturn,
|
|
3601
|
+
context: null | undefined,
|
|
3602
|
+
a: A,
|
|
3603
|
+
): (t: T, u: U, v: V, w: W) => TReturn;
|
|
3467
3604
|
/**
|
|
3468
3605
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3469
3606
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3472,9 +3609,10 @@ $.post( "test.php" );
|
|
|
3472
3609
|
* @since 1.9
|
|
3473
3610
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3474
3611
|
*/
|
|
3475
|
-
proxy<TReturn,
|
|
3476
|
-
|
|
3477
|
-
|
|
3612
|
+
proxy<TReturn, T, U, V, W>(
|
|
3613
|
+
funсtion: (t: T, u: U, v: V, w: W) => TReturn,
|
|
3614
|
+
context: null | undefined,
|
|
3615
|
+
): (t: T, u: U, v: V, w: W) => TReturn;
|
|
3478
3616
|
|
|
3479
3617
|
// #endregion
|
|
3480
3618
|
|
|
@@ -3496,12 +3634,17 @@ $.post( "test.php" );
|
|
|
3496
3634
|
* @since 1.9
|
|
3497
3635
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3498
3636
|
*/
|
|
3499
|
-
proxy<TReturn,
|
|
3500
|
-
A, B, C, D, E, F, G,
|
|
3501
|
-
|
|
3502
|
-
|
|
3503
|
-
|
|
3504
|
-
|
|
3637
|
+
proxy<TReturn, A, B, C, D, E, F, G, T, U, V, W, X>(
|
|
3638
|
+
funсtion: (a: A, b: B, c: C, d: D, e: E, f: F, g: G, t: T, u: U, v: V, w: W, x: X) => TReturn,
|
|
3639
|
+
context: null | undefined,
|
|
3640
|
+
a: A,
|
|
3641
|
+
b: B,
|
|
3642
|
+
c: C,
|
|
3643
|
+
d: D,
|
|
3644
|
+
e: E,
|
|
3645
|
+
f: F,
|
|
3646
|
+
g: G,
|
|
3647
|
+
): (t: T, u: U, v: V, w: W, x: X) => TReturn;
|
|
3505
3648
|
/**
|
|
3506
3649
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3507
3650
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3516,12 +3659,16 @@ $.post( "test.php" );
|
|
|
3516
3659
|
* @since 1.9
|
|
3517
3660
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3518
3661
|
*/
|
|
3519
|
-
proxy<TReturn,
|
|
3520
|
-
A, B, C, D, E, F,
|
|
3521
|
-
|
|
3522
|
-
|
|
3523
|
-
|
|
3524
|
-
|
|
3662
|
+
proxy<TReturn, A, B, C, D, E, F, T, U, V, W, X>(
|
|
3663
|
+
funсtion: (a: A, b: B, c: C, d: D, e: E, f: F, t: T, u: U, v: V, w: W, x: X) => TReturn,
|
|
3664
|
+
context: null | undefined,
|
|
3665
|
+
a: A,
|
|
3666
|
+
b: B,
|
|
3667
|
+
c: C,
|
|
3668
|
+
d: D,
|
|
3669
|
+
e: E,
|
|
3670
|
+
f: F,
|
|
3671
|
+
): (t: T, u: U, v: V, w: W, x: X) => TReturn;
|
|
3525
3672
|
/**
|
|
3526
3673
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3527
3674
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3535,12 +3682,15 @@ $.post( "test.php" );
|
|
|
3535
3682
|
* @since 1.9
|
|
3536
3683
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3537
3684
|
*/
|
|
3538
|
-
proxy<TReturn,
|
|
3539
|
-
A, B, C, D, E,
|
|
3540
|
-
|
|
3541
|
-
|
|
3542
|
-
|
|
3543
|
-
|
|
3685
|
+
proxy<TReturn, A, B, C, D, E, T, U, V, W, X>(
|
|
3686
|
+
funсtion: (a: A, b: B, c: C, d: D, e: E, t: T, u: U, v: V, w: W, x: X) => TReturn,
|
|
3687
|
+
context: null | undefined,
|
|
3688
|
+
a: A,
|
|
3689
|
+
b: B,
|
|
3690
|
+
c: C,
|
|
3691
|
+
d: D,
|
|
3692
|
+
e: E,
|
|
3693
|
+
): (t: T, u: U, v: V, w: W, x: X) => TReturn;
|
|
3544
3694
|
/**
|
|
3545
3695
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3546
3696
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3553,12 +3703,14 @@ $.post( "test.php" );
|
|
|
3553
3703
|
* @since 1.9
|
|
3554
3704
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3555
3705
|
*/
|
|
3556
|
-
proxy<TReturn,
|
|
3557
|
-
A, B, C, D,
|
|
3558
|
-
|
|
3559
|
-
|
|
3560
|
-
|
|
3561
|
-
|
|
3706
|
+
proxy<TReturn, A, B, C, D, T, U, V, W, X>(
|
|
3707
|
+
funсtion: (a: A, b: B, c: C, d: D, t: T, u: U, v: V, w: W, x: X) => TReturn,
|
|
3708
|
+
context: null | undefined,
|
|
3709
|
+
a: A,
|
|
3710
|
+
b: B,
|
|
3711
|
+
c: C,
|
|
3712
|
+
d: D,
|
|
3713
|
+
): (t: T, u: U, v: V, w: W, x: X) => TReturn;
|
|
3562
3714
|
/**
|
|
3563
3715
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3564
3716
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3570,12 +3722,13 @@ $.post( "test.php" );
|
|
|
3570
3722
|
* @since 1.9
|
|
3571
3723
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3572
3724
|
*/
|
|
3573
|
-
proxy<TReturn,
|
|
3574
|
-
A, B, C,
|
|
3575
|
-
|
|
3576
|
-
|
|
3577
|
-
|
|
3578
|
-
|
|
3725
|
+
proxy<TReturn, A, B, C, T, U, V, W, X>(
|
|
3726
|
+
funсtion: (a: A, b: B, c: C, t: T, u: U, v: V, w: W, x: X) => TReturn,
|
|
3727
|
+
context: null | undefined,
|
|
3728
|
+
a: A,
|
|
3729
|
+
b: B,
|
|
3730
|
+
c: C,
|
|
3731
|
+
): (t: T, u: U, v: V, w: W, x: X) => TReturn;
|
|
3579
3732
|
/**
|
|
3580
3733
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3581
3734
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3586,12 +3739,12 @@ $.post( "test.php" );
|
|
|
3586
3739
|
* @since 1.9
|
|
3587
3740
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3588
3741
|
*/
|
|
3589
|
-
proxy<TReturn,
|
|
3590
|
-
A, B,
|
|
3591
|
-
|
|
3592
|
-
|
|
3593
|
-
|
|
3594
|
-
|
|
3742
|
+
proxy<TReturn, A, B, T, U, V, W, X>(
|
|
3743
|
+
funсtion: (a: A, b: B, t: T, u: U, v: V, w: W, x: X) => TReturn,
|
|
3744
|
+
context: null | undefined,
|
|
3745
|
+
a: A,
|
|
3746
|
+
b: B,
|
|
3747
|
+
): (t: T, u: U, v: V, w: W, x: X) => TReturn;
|
|
3595
3748
|
/**
|
|
3596
3749
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3597
3750
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3601,12 +3754,11 @@ $.post( "test.php" );
|
|
|
3601
3754
|
* @since 1.9
|
|
3602
3755
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3603
3756
|
*/
|
|
3604
|
-
proxy<TReturn,
|
|
3605
|
-
A,
|
|
3606
|
-
|
|
3607
|
-
|
|
3608
|
-
|
|
3609
|
-
a: A): (t: T, u: U, v: V, w: W, x: X) => TReturn;
|
|
3757
|
+
proxy<TReturn, A, T, U, V, W, X>(
|
|
3758
|
+
funсtion: (a: A, t: T, u: U, v: V, w: W, x: X) => TReturn,
|
|
3759
|
+
context: null | undefined,
|
|
3760
|
+
a: A,
|
|
3761
|
+
): (t: T, u: U, v: V, w: W, x: X) => TReturn;
|
|
3610
3762
|
/**
|
|
3611
3763
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3612
3764
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3615,9 +3767,10 @@ $.post( "test.php" );
|
|
|
3615
3767
|
* @since 1.9
|
|
3616
3768
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3617
3769
|
*/
|
|
3618
|
-
proxy<TReturn,
|
|
3619
|
-
|
|
3620
|
-
|
|
3770
|
+
proxy<TReturn, T, U, V, W, X>(
|
|
3771
|
+
funсtion: (t: T, u: U, v: V, w: W, x: X) => TReturn,
|
|
3772
|
+
context: null | undefined,
|
|
3773
|
+
): (t: T, u: U, v: V, w: W, x: X) => TReturn;
|
|
3621
3774
|
|
|
3622
3775
|
// #endregion
|
|
3623
3776
|
|
|
@@ -3639,12 +3792,17 @@ $.post( "test.php" );
|
|
|
3639
3792
|
* @since 1.9
|
|
3640
3793
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3641
3794
|
*/
|
|
3642
|
-
proxy<TReturn,
|
|
3643
|
-
A, B, C, D, E, F, G,
|
|
3644
|
-
|
|
3645
|
-
|
|
3646
|
-
|
|
3647
|
-
|
|
3795
|
+
proxy<TReturn, A, B, C, D, E, F, G, T, U, V, W, X, Y>(
|
|
3796
|
+
funсtion: (a: A, b: B, c: C, d: D, e: E, f: F, g: G, t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn,
|
|
3797
|
+
context: null | undefined,
|
|
3798
|
+
a: A,
|
|
3799
|
+
b: B,
|
|
3800
|
+
c: C,
|
|
3801
|
+
d: D,
|
|
3802
|
+
e: E,
|
|
3803
|
+
f: F,
|
|
3804
|
+
g: G,
|
|
3805
|
+
): (t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn;
|
|
3648
3806
|
/**
|
|
3649
3807
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3650
3808
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3659,12 +3817,16 @@ $.post( "test.php" );
|
|
|
3659
3817
|
* @since 1.9
|
|
3660
3818
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3661
3819
|
*/
|
|
3662
|
-
proxy<TReturn,
|
|
3663
|
-
A, B, C, D, E, F,
|
|
3664
|
-
|
|
3665
|
-
|
|
3666
|
-
|
|
3667
|
-
|
|
3820
|
+
proxy<TReturn, A, B, C, D, E, F, T, U, V, W, X, Y>(
|
|
3821
|
+
funсtion: (a: A, b: B, c: C, d: D, e: E, f: F, t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn,
|
|
3822
|
+
context: null | undefined,
|
|
3823
|
+
a: A,
|
|
3824
|
+
b: B,
|
|
3825
|
+
c: C,
|
|
3826
|
+
d: D,
|
|
3827
|
+
e: E,
|
|
3828
|
+
f: F,
|
|
3829
|
+
): (t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn;
|
|
3668
3830
|
/**
|
|
3669
3831
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3670
3832
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3678,12 +3840,15 @@ $.post( "test.php" );
|
|
|
3678
3840
|
* @since 1.9
|
|
3679
3841
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3680
3842
|
*/
|
|
3681
|
-
proxy<TReturn,
|
|
3682
|
-
A, B, C, D, E,
|
|
3683
|
-
|
|
3684
|
-
|
|
3685
|
-
|
|
3686
|
-
|
|
3843
|
+
proxy<TReturn, A, B, C, D, E, T, U, V, W, X, Y>(
|
|
3844
|
+
funсtion: (a: A, b: B, c: C, d: D, e: E, t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn,
|
|
3845
|
+
context: null | undefined,
|
|
3846
|
+
a: A,
|
|
3847
|
+
b: B,
|
|
3848
|
+
c: C,
|
|
3849
|
+
d: D,
|
|
3850
|
+
e: E,
|
|
3851
|
+
): (t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn;
|
|
3687
3852
|
/**
|
|
3688
3853
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3689
3854
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3696,12 +3861,14 @@ $.post( "test.php" );
|
|
|
3696
3861
|
* @since 1.9
|
|
3697
3862
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3698
3863
|
*/
|
|
3699
|
-
proxy<TReturn,
|
|
3700
|
-
A, B, C, D,
|
|
3701
|
-
|
|
3702
|
-
|
|
3703
|
-
|
|
3704
|
-
|
|
3864
|
+
proxy<TReturn, A, B, C, D, T, U, V, W, X, Y>(
|
|
3865
|
+
funсtion: (a: A, b: B, c: C, d: D, t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn,
|
|
3866
|
+
context: null | undefined,
|
|
3867
|
+
a: A,
|
|
3868
|
+
b: B,
|
|
3869
|
+
c: C,
|
|
3870
|
+
d: D,
|
|
3871
|
+
): (t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn;
|
|
3705
3872
|
/**
|
|
3706
3873
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3707
3874
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3713,12 +3880,13 @@ $.post( "test.php" );
|
|
|
3713
3880
|
* @since 1.9
|
|
3714
3881
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3715
3882
|
*/
|
|
3716
|
-
proxy<TReturn,
|
|
3717
|
-
A, B, C,
|
|
3718
|
-
|
|
3719
|
-
|
|
3720
|
-
|
|
3721
|
-
|
|
3883
|
+
proxy<TReturn, A, B, C, T, U, V, W, X, Y>(
|
|
3884
|
+
funсtion: (a: A, b: B, c: C, t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn,
|
|
3885
|
+
context: null | undefined,
|
|
3886
|
+
a: A,
|
|
3887
|
+
b: B,
|
|
3888
|
+
c: C,
|
|
3889
|
+
): (t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn;
|
|
3722
3890
|
/**
|
|
3723
3891
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3724
3892
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3729,12 +3897,12 @@ $.post( "test.php" );
|
|
|
3729
3897
|
* @since 1.9
|
|
3730
3898
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3731
3899
|
*/
|
|
3732
|
-
proxy<TReturn,
|
|
3733
|
-
A, B,
|
|
3734
|
-
|
|
3735
|
-
|
|
3736
|
-
|
|
3737
|
-
|
|
3900
|
+
proxy<TReturn, A, B, T, U, V, W, X, Y>(
|
|
3901
|
+
funсtion: (a: A, b: B, t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn,
|
|
3902
|
+
context: null | undefined,
|
|
3903
|
+
a: A,
|
|
3904
|
+
b: B,
|
|
3905
|
+
): (t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn;
|
|
3738
3906
|
/**
|
|
3739
3907
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3740
3908
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3744,12 +3912,11 @@ $.post( "test.php" );
|
|
|
3744
3912
|
* @since 1.9
|
|
3745
3913
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3746
3914
|
*/
|
|
3747
|
-
proxy<TReturn,
|
|
3748
|
-
A,
|
|
3749
|
-
|
|
3750
|
-
|
|
3751
|
-
|
|
3752
|
-
a: A): (t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn;
|
|
3915
|
+
proxy<TReturn, A, T, U, V, W, X, Y>(
|
|
3916
|
+
funсtion: (a: A, t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn,
|
|
3917
|
+
context: null | undefined,
|
|
3918
|
+
a: A,
|
|
3919
|
+
): (t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn;
|
|
3753
3920
|
/**
|
|
3754
3921
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3755
3922
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3758,9 +3925,10 @@ $.post( "test.php" );
|
|
|
3758
3925
|
* @since 1.9
|
|
3759
3926
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3760
3927
|
*/
|
|
3761
|
-
proxy<TReturn,
|
|
3762
|
-
|
|
3763
|
-
|
|
3928
|
+
proxy<TReturn, T, U, V, W, X, Y>(
|
|
3929
|
+
funсtion: (t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn,
|
|
3930
|
+
context: null | undefined,
|
|
3931
|
+
): (t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn;
|
|
3764
3932
|
|
|
3765
3933
|
// #endregion
|
|
3766
3934
|
|
|
@@ -3782,12 +3950,33 @@ $.post( "test.php" );
|
|
|
3782
3950
|
* @since 1.9
|
|
3783
3951
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3784
3952
|
*/
|
|
3785
|
-
proxy<TReturn,
|
|
3786
|
-
|
|
3787
|
-
|
|
3788
|
-
|
|
3789
|
-
|
|
3790
|
-
|
|
3953
|
+
proxy<TReturn, A, B, C, D, E, F, G, T, U, V, W, X, Y, Z>(
|
|
3954
|
+
funсtion: (
|
|
3955
|
+
a: A,
|
|
3956
|
+
b: B,
|
|
3957
|
+
c: C,
|
|
3958
|
+
d: D,
|
|
3959
|
+
e: E,
|
|
3960
|
+
f: F,
|
|
3961
|
+
g: G,
|
|
3962
|
+
t: T,
|
|
3963
|
+
u: U,
|
|
3964
|
+
v: V,
|
|
3965
|
+
w: W,
|
|
3966
|
+
x: X,
|
|
3967
|
+
y: Y,
|
|
3968
|
+
z: Z,
|
|
3969
|
+
...args: any[]
|
|
3970
|
+
) => TReturn,
|
|
3971
|
+
context: null | undefined,
|
|
3972
|
+
a: A,
|
|
3973
|
+
b: B,
|
|
3974
|
+
c: C,
|
|
3975
|
+
d: D,
|
|
3976
|
+
e: E,
|
|
3977
|
+
f: F,
|
|
3978
|
+
g: G,
|
|
3979
|
+
): (t: T, u: U, v: V, w: W, x: X, y: Y, z: Z, ...args: any[]) => TReturn;
|
|
3791
3980
|
/**
|
|
3792
3981
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3793
3982
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3802,12 +3991,31 @@ $.post( "test.php" );
|
|
|
3802
3991
|
* @since 1.9
|
|
3803
3992
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3804
3993
|
*/
|
|
3805
|
-
proxy<TReturn,
|
|
3806
|
-
|
|
3807
|
-
|
|
3808
|
-
|
|
3809
|
-
|
|
3810
|
-
|
|
3994
|
+
proxy<TReturn, A, B, C, D, E, F, T, U, V, W, X, Y, Z>(
|
|
3995
|
+
funсtion: (
|
|
3996
|
+
a: A,
|
|
3997
|
+
b: B,
|
|
3998
|
+
c: C,
|
|
3999
|
+
d: D,
|
|
4000
|
+
e: E,
|
|
4001
|
+
f: F,
|
|
4002
|
+
t: T,
|
|
4003
|
+
u: U,
|
|
4004
|
+
v: V,
|
|
4005
|
+
w: W,
|
|
4006
|
+
x: X,
|
|
4007
|
+
y: Y,
|
|
4008
|
+
z: Z,
|
|
4009
|
+
...args: any[]
|
|
4010
|
+
) => TReturn,
|
|
4011
|
+
context: null | undefined,
|
|
4012
|
+
a: A,
|
|
4013
|
+
b: B,
|
|
4014
|
+
c: C,
|
|
4015
|
+
d: D,
|
|
4016
|
+
e: E,
|
|
4017
|
+
f: F,
|
|
4018
|
+
): (t: T, u: U, v: V, w: W, x: X, y: Y, z: Z, ...args: any[]) => TReturn;
|
|
3811
4019
|
/**
|
|
3812
4020
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3813
4021
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3821,12 +4029,15 @@ $.post( "test.php" );
|
|
|
3821
4029
|
* @since 1.9
|
|
3822
4030
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3823
4031
|
*/
|
|
3824
|
-
proxy<TReturn,
|
|
3825
|
-
A, B, C, D, E,
|
|
3826
|
-
|
|
3827
|
-
|
|
3828
|
-
|
|
3829
|
-
|
|
4032
|
+
proxy<TReturn, A, B, C, D, E, T, U, V, W, X, Y, Z>(
|
|
4033
|
+
funсtion: (a: A, b: B, c: C, d: D, e: E, t: T, u: U, v: V, w: W, x: X, y: Y, z: Z, ...args: any[]) => TReturn,
|
|
4034
|
+
context: null | undefined,
|
|
4035
|
+
a: A,
|
|
4036
|
+
b: B,
|
|
4037
|
+
c: C,
|
|
4038
|
+
d: D,
|
|
4039
|
+
e: E,
|
|
4040
|
+
): (t: T, u: U, v: V, w: W, x: X, y: Y, z: Z, ...args: any[]) => TReturn;
|
|
3830
4041
|
/**
|
|
3831
4042
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3832
4043
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3839,12 +4050,14 @@ $.post( "test.php" );
|
|
|
3839
4050
|
* @since 1.9
|
|
3840
4051
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3841
4052
|
*/
|
|
3842
|
-
proxy<TReturn,
|
|
3843
|
-
A, B, C, D,
|
|
3844
|
-
|
|
3845
|
-
|
|
3846
|
-
|
|
3847
|
-
|
|
4053
|
+
proxy<TReturn, A, B, C, D, T, U, V, W, X, Y, Z>(
|
|
4054
|
+
funсtion: (a: A, b: B, c: C, d: D, t: T, u: U, v: V, w: W, x: X, y: Y, z: Z, ...args: any[]) => TReturn,
|
|
4055
|
+
context: null | undefined,
|
|
4056
|
+
a: A,
|
|
4057
|
+
b: B,
|
|
4058
|
+
c: C,
|
|
4059
|
+
d: D,
|
|
4060
|
+
): (t: T, u: U, v: V, w: W, x: X, y: Y, z: Z, ...args: any[]) => TReturn;
|
|
3848
4061
|
/**
|
|
3849
4062
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3850
4063
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3856,12 +4069,13 @@ $.post( "test.php" );
|
|
|
3856
4069
|
* @since 1.9
|
|
3857
4070
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3858
4071
|
*/
|
|
3859
|
-
proxy<TReturn,
|
|
3860
|
-
A, B, C,
|
|
3861
|
-
|
|
3862
|
-
|
|
3863
|
-
|
|
3864
|
-
|
|
4072
|
+
proxy<TReturn, A, B, C, T, U, V, W, X, Y, Z>(
|
|
4073
|
+
funсtion: (a: A, b: B, c: C, t: T, u: U, v: V, w: W, x: X, y: Y, z: Z, ...args: any[]) => TReturn,
|
|
4074
|
+
context: null | undefined,
|
|
4075
|
+
a: A,
|
|
4076
|
+
b: B,
|
|
4077
|
+
c: C,
|
|
4078
|
+
): (t: T, u: U, v: V, w: W, x: X, y: Y, z: Z, ...args: any[]) => TReturn;
|
|
3865
4079
|
/**
|
|
3866
4080
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3867
4081
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3872,12 +4086,12 @@ $.post( "test.php" );
|
|
|
3872
4086
|
* @since 1.9
|
|
3873
4087
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3874
4088
|
*/
|
|
3875
|
-
proxy<TReturn,
|
|
3876
|
-
A, B,
|
|
3877
|
-
|
|
3878
|
-
|
|
3879
|
-
|
|
3880
|
-
|
|
4089
|
+
proxy<TReturn, A, B, T, U, V, W, X, Y, Z>(
|
|
4090
|
+
funсtion: (a: A, b: B, t: T, u: U, v: V, w: W, x: X, y: Y, z: Z, ...args: any[]) => TReturn,
|
|
4091
|
+
context: null | undefined,
|
|
4092
|
+
a: A,
|
|
4093
|
+
b: B,
|
|
4094
|
+
): (t: T, u: U, v: V, w: W, x: X, y: Y, z: Z, ...args: any[]) => TReturn;
|
|
3881
4095
|
/**
|
|
3882
4096
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3883
4097
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3887,12 +4101,11 @@ $.post( "test.php" );
|
|
|
3887
4101
|
* @since 1.9
|
|
3888
4102
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3889
4103
|
*/
|
|
3890
|
-
proxy<TReturn,
|
|
3891
|
-
A,
|
|
3892
|
-
|
|
3893
|
-
|
|
3894
|
-
|
|
3895
|
-
a: A): (t: T, u: U, v: V, w: W, x: X, y: Y, z: Z, ...args: any[]) => TReturn;
|
|
4104
|
+
proxy<TReturn, A, T, U, V, W, X, Y, Z>(
|
|
4105
|
+
funсtion: (a: A, t: T, u: U, v: V, w: W, x: X, y: Y, z: Z, ...args: any[]) => TReturn,
|
|
4106
|
+
context: null | undefined,
|
|
4107
|
+
a: A,
|
|
4108
|
+
): (t: T, u: U, v: V, w: W, x: X, y: Y, z: Z, ...args: any[]) => TReturn;
|
|
3896
4109
|
/**
|
|
3897
4110
|
* Takes a function and returns a new one that will always have a particular context.
|
|
3898
4111
|
* @param funсtion The function whose context will be changed.
|
|
@@ -3901,9 +4114,10 @@ $.post( "test.php" );
|
|
|
3901
4114
|
* @since 1.9
|
|
3902
4115
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3903
4116
|
*/
|
|
3904
|
-
proxy<TReturn,
|
|
3905
|
-
|
|
3906
|
-
|
|
4117
|
+
proxy<TReturn, T, U, V, W, X, Y, Z>(
|
|
4118
|
+
funсtion: (t: T, u: U, v: V, w: W, x: X, y: Y, z: Z, ...args: any[]) => TReturn,
|
|
4119
|
+
context: null | undefined,
|
|
4120
|
+
): (t: T, u: U, v: V, w: W, x: X, y: Y, z: Z, ...args: any[]) => TReturn;
|
|
3907
4121
|
|
|
3908
4122
|
// #endregion
|
|
3909
4123
|
|
|
@@ -3921,9 +4135,11 @@ $.post( "test.php" );
|
|
|
3921
4135
|
* @since 1.9
|
|
3922
4136
|
* @deprecated Deprecated since 3.3. Use \`{@link Function#bind }\`.
|
|
3923
4137
|
*/
|
|
3924
|
-
proxy<TReturn>(
|
|
3925
|
-
|
|
3926
|
-
|
|
4138
|
+
proxy<TReturn>(
|
|
4139
|
+
funсtion: (...args: any[]) => TReturn,
|
|
4140
|
+
context: null | undefined,
|
|
4141
|
+
...additionalArguments: any[]
|
|
4142
|
+
): (...args: any[]) => TReturn;
|
|
3927
4143
|
|
|
3928
4144
|
// #endregion
|
|
3929
4145
|
|
|
@@ -4072,11 +4288,17 @@ $( "#test" )
|
|
|
4072
4288
|
</html>
|
|
4073
4289
|
```
|
|
4074
4290
|
*/
|
|
4075
|
-
proxy<TContext,
|
|
4076
|
-
TReturn,
|
|
4077
|
-
|
|
4078
|
-
|
|
4079
|
-
|
|
4291
|
+
proxy<TContext, TReturn, A, B, C, D, E, F, G>(
|
|
4292
|
+
funсtion: (this: TContext, a: A, b: B, c: C, d: D, e: E, f: F, g: G) => TReturn,
|
|
4293
|
+
context: TContext,
|
|
4294
|
+
a: A,
|
|
4295
|
+
b: B,
|
|
4296
|
+
c: C,
|
|
4297
|
+
d: D,
|
|
4298
|
+
e: E,
|
|
4299
|
+
f: F,
|
|
4300
|
+
g: G,
|
|
4301
|
+
): () => TReturn;
|
|
4080
4302
|
/**
|
|
4081
4303
|
* Takes a function and returns a new one that will always have a particular context.
|
|
4082
4304
|
* @param funсtion The function whose context will be changed.
|
|
@@ -4210,11 +4432,16 @@ $( "#test" )
|
|
|
4210
4432
|
</html>
|
|
4211
4433
|
```
|
|
4212
4434
|
*/
|
|
4213
|
-
proxy<TContext,
|
|
4214
|
-
TReturn,
|
|
4215
|
-
|
|
4216
|
-
|
|
4217
|
-
|
|
4435
|
+
proxy<TContext, TReturn, A, B, C, D, E, F>(
|
|
4436
|
+
funсtion: (this: TContext, a: A, b: B, c: C, d: D, e: E, f: F) => TReturn,
|
|
4437
|
+
context: TContext,
|
|
4438
|
+
a: A,
|
|
4439
|
+
b: B,
|
|
4440
|
+
c: C,
|
|
4441
|
+
d: D,
|
|
4442
|
+
e: E,
|
|
4443
|
+
f: F,
|
|
4444
|
+
): () => TReturn;
|
|
4218
4445
|
/**
|
|
4219
4446
|
* Takes a function and returns a new one that will always have a particular context.
|
|
4220
4447
|
* @param funсtion The function whose context will be changed.
|
|
@@ -4347,11 +4574,15 @@ $( "#test" )
|
|
|
4347
4574
|
</html>
|
|
4348
4575
|
```
|
|
4349
4576
|
*/
|
|
4350
|
-
proxy<TContext,
|
|
4351
|
-
TReturn,
|
|
4352
|
-
|
|
4353
|
-
|
|
4354
|
-
|
|
4577
|
+
proxy<TContext, TReturn, A, B, C, D, E>(
|
|
4578
|
+
funсtion: (this: TContext, a: A, b: B, c: C, d: D, e: E) => TReturn,
|
|
4579
|
+
context: TContext,
|
|
4580
|
+
a: A,
|
|
4581
|
+
b: B,
|
|
4582
|
+
c: C,
|
|
4583
|
+
d: D,
|
|
4584
|
+
e: E,
|
|
4585
|
+
): () => TReturn;
|
|
4355
4586
|
/**
|
|
4356
4587
|
* Takes a function and returns a new one that will always have a particular context.
|
|
4357
4588
|
* @param funсtion The function whose context will be changed.
|
|
@@ -4483,11 +4714,14 @@ $( "#test" )
|
|
|
4483
4714
|
</html>
|
|
4484
4715
|
```
|
|
4485
4716
|
*/
|
|
4486
|
-
proxy<TContext,
|
|
4487
|
-
TReturn,
|
|
4488
|
-
|
|
4489
|
-
|
|
4490
|
-
|
|
4717
|
+
proxy<TContext, TReturn, A, B, C, D>(
|
|
4718
|
+
funсtion: (this: TContext, a: A, b: B, c: C, d: D) => TReturn,
|
|
4719
|
+
context: TContext,
|
|
4720
|
+
a: A,
|
|
4721
|
+
b: B,
|
|
4722
|
+
c: C,
|
|
4723
|
+
d: D,
|
|
4724
|
+
): () => TReturn;
|
|
4491
4725
|
/**
|
|
4492
4726
|
* Takes a function and returns a new one that will always have a particular context.
|
|
4493
4727
|
* @param funсtion The function whose context will be changed.
|
|
@@ -4618,11 +4852,13 @@ $( "#test" )
|
|
|
4618
4852
|
</html>
|
|
4619
4853
|
```
|
|
4620
4854
|
*/
|
|
4621
|
-
proxy<TContext,
|
|
4622
|
-
TReturn,
|
|
4623
|
-
|
|
4624
|
-
|
|
4625
|
-
|
|
4855
|
+
proxy<TContext, TReturn, A, B, C>(
|
|
4856
|
+
funсtion: (this: TContext, a: A, b: B, c: C) => TReturn,
|
|
4857
|
+
context: TContext,
|
|
4858
|
+
a: A,
|
|
4859
|
+
b: B,
|
|
4860
|
+
c: C,
|
|
4861
|
+
): () => TReturn;
|
|
4626
4862
|
/**
|
|
4627
4863
|
* Takes a function and returns a new one that will always have a particular context.
|
|
4628
4864
|
* @param funсtion The function whose context will be changed.
|
|
@@ -4752,11 +4988,12 @@ $( "#test" )
|
|
|
4752
4988
|
</html>
|
|
4753
4989
|
```
|
|
4754
4990
|
*/
|
|
4755
|
-
proxy<TContext,
|
|
4756
|
-
TReturn,
|
|
4757
|
-
|
|
4758
|
-
|
|
4759
|
-
|
|
4991
|
+
proxy<TContext, TReturn, A, B>(
|
|
4992
|
+
funсtion: (this: TContext, a: A, b: B) => TReturn,
|
|
4993
|
+
context: TContext,
|
|
4994
|
+
a: A,
|
|
4995
|
+
b: B,
|
|
4996
|
+
): () => TReturn;
|
|
4760
4997
|
/**
|
|
4761
4998
|
* Takes a function and returns a new one that will always have a particular context.
|
|
4762
4999
|
* @param funсtion The function whose context will be changed.
|
|
@@ -4885,11 +5122,7 @@ $( "#test" )
|
|
|
4885
5122
|
</html>
|
|
4886
5123
|
```
|
|
4887
5124
|
*/
|
|
4888
|
-
proxy<TContext,
|
|
4889
|
-
TReturn,
|
|
4890
|
-
A>(funсtion: (this: TContext, a: A) => TReturn,
|
|
4891
|
-
context: TContext,
|
|
4892
|
-
a: A): () => TReturn;
|
|
5125
|
+
proxy<TContext, TReturn, A>(funсtion: (this: TContext, a: A) => TReturn, context: TContext, a: A): () => TReturn;
|
|
4893
5126
|
/**
|
|
4894
5127
|
* Takes a function and returns a new one that will always have a particular context.
|
|
4895
5128
|
* @param funсtion The function whose context will be changed.
|
|
@@ -5017,9 +5250,7 @@ $( "#test" )
|
|
|
5017
5250
|
</html>
|
|
5018
5251
|
```
|
|
5019
5252
|
*/
|
|
5020
|
-
proxy<TContext,
|
|
5021
|
-
TReturn>(funсtion: (this: TContext) => TReturn,
|
|
5022
|
-
context: TContext): () => TReturn;
|
|
5253
|
+
proxy<TContext, TReturn>(funсtion: (this: TContext) => TReturn, context: TContext): () => TReturn;
|
|
5023
5254
|
|
|
5024
5255
|
// #endregion
|
|
5025
5256
|
|
|
@@ -5160,13 +5391,17 @@ $( "#test" )
|
|
|
5160
5391
|
</html>
|
|
5161
5392
|
```
|
|
5162
5393
|
*/
|
|
5163
|
-
proxy<TContext,
|
|
5164
|
-
TReturn,
|
|
5165
|
-
|
|
5166
|
-
|
|
5167
|
-
|
|
5168
|
-
|
|
5169
|
-
|
|
5394
|
+
proxy<TContext, TReturn, A, B, C, D, E, F, G, T>(
|
|
5395
|
+
funсtion: (this: TContext, a: A, b: B, c: C, d: D, e: E, f: F, g: G, t: T) => TReturn,
|
|
5396
|
+
context: TContext,
|
|
5397
|
+
a: A,
|
|
5398
|
+
b: B,
|
|
5399
|
+
c: C,
|
|
5400
|
+
d: D,
|
|
5401
|
+
e: E,
|
|
5402
|
+
f: F,
|
|
5403
|
+
g: G,
|
|
5404
|
+
): (t: T) => TReturn;
|
|
5170
5405
|
/**
|
|
5171
5406
|
* Takes a function and returns a new one that will always have a particular context.
|
|
5172
5407
|
* @param funсtion The function whose context will be changed.
|
|
@@ -5300,13 +5535,16 @@ $( "#test" )
|
|
|
5300
5535
|
</html>
|
|
5301
5536
|
```
|
|
5302
5537
|
*/
|
|
5303
|
-
proxy<TContext,
|
|
5304
|
-
TReturn,
|
|
5305
|
-
|
|
5306
|
-
|
|
5307
|
-
|
|
5308
|
-
|
|
5309
|
-
|
|
5538
|
+
proxy<TContext, TReturn, A, B, C, D, E, F, T>(
|
|
5539
|
+
funсtion: (this: TContext, a: A, b: B, c: C, d: D, e: E, f: F, t: T) => TReturn,
|
|
5540
|
+
context: TContext,
|
|
5541
|
+
a: A,
|
|
5542
|
+
b: B,
|
|
5543
|
+
c: C,
|
|
5544
|
+
d: D,
|
|
5545
|
+
e: E,
|
|
5546
|
+
f: F,
|
|
5547
|
+
): (t: T) => TReturn;
|
|
5310
5548
|
/**
|
|
5311
5549
|
* Takes a function and returns a new one that will always have a particular context.
|
|
5312
5550
|
* @param funсtion The function whose context will be changed.
|
|
@@ -5439,13 +5677,15 @@ $( "#test" )
|
|
|
5439
5677
|
</html>
|
|
5440
5678
|
```
|
|
5441
5679
|
*/
|
|
5442
|
-
proxy<TContext,
|
|
5443
|
-
TReturn,
|
|
5444
|
-
|
|
5445
|
-
|
|
5446
|
-
|
|
5447
|
-
|
|
5448
|
-
|
|
5680
|
+
proxy<TContext, TReturn, A, B, C, D, E, T>(
|
|
5681
|
+
funсtion: (this: TContext, a: A, b: B, c: C, d: D, e: E, t: T) => TReturn,
|
|
5682
|
+
context: TContext,
|
|
5683
|
+
a: A,
|
|
5684
|
+
b: B,
|
|
5685
|
+
c: C,
|
|
5686
|
+
d: D,
|
|
5687
|
+
e: E,
|
|
5688
|
+
): (t: T) => TReturn;
|
|
5449
5689
|
/**
|
|
5450
5690
|
* Takes a function and returns a new one that will always have a particular context.
|
|
5451
5691
|
* @param funсtion The function whose context will be changed.
|
|
@@ -5577,13 +5817,14 @@ $( "#test" )
|
|
|
5577
5817
|
</html>
|
|
5578
5818
|
```
|
|
5579
5819
|
*/
|
|
5580
|
-
proxy<TContext,
|
|
5581
|
-
TReturn,
|
|
5582
|
-
|
|
5583
|
-
|
|
5584
|
-
|
|
5585
|
-
|
|
5586
|
-
|
|
5820
|
+
proxy<TContext, TReturn, A, B, C, D, T>(
|
|
5821
|
+
funсtion: (this: TContext, a: A, b: B, c: C, d: D, t: T) => TReturn,
|
|
5822
|
+
context: TContext,
|
|
5823
|
+
a: A,
|
|
5824
|
+
b: B,
|
|
5825
|
+
c: C,
|
|
5826
|
+
d: D,
|
|
5827
|
+
): (t: T) => TReturn;
|
|
5587
5828
|
/**
|
|
5588
5829
|
* Takes a function and returns a new one that will always have a particular context.
|
|
5589
5830
|
* @param funсtion The function whose context will be changed.
|
|
@@ -5714,13 +5955,13 @@ $( "#test" )
|
|
|
5714
5955
|
</html>
|
|
5715
5956
|
```
|
|
5716
5957
|
*/
|
|
5717
|
-
proxy<TContext,
|
|
5718
|
-
TReturn,
|
|
5719
|
-
|
|
5720
|
-
|
|
5721
|
-
|
|
5722
|
-
|
|
5723
|
-
|
|
5958
|
+
proxy<TContext, TReturn, A, B, C, T>(
|
|
5959
|
+
funсtion: (this: TContext, a: A, b: B, c: C, t: T) => TReturn,
|
|
5960
|
+
context: TContext,
|
|
5961
|
+
a: A,
|
|
5962
|
+
b: B,
|
|
5963
|
+
c: C,
|
|
5964
|
+
): (t: T) => TReturn;
|
|
5724
5965
|
/**
|
|
5725
5966
|
* Takes a function and returns a new one that will always have a particular context.
|
|
5726
5967
|
* @param funсtion The function whose context will be changed.
|
|
@@ -5850,13 +6091,12 @@ $( "#test" )
|
|
|
5850
6091
|
</html>
|
|
5851
6092
|
```
|
|
5852
6093
|
*/
|
|
5853
|
-
proxy<TContext,
|
|
5854
|
-
TReturn,
|
|
5855
|
-
|
|
5856
|
-
|
|
5857
|
-
|
|
5858
|
-
|
|
5859
|
-
a: A, b: B): (t: T) => TReturn;
|
|
6094
|
+
proxy<TContext, TReturn, A, B, T>(
|
|
6095
|
+
funсtion: (this: TContext, a: A, b: B, t: T) => TReturn,
|
|
6096
|
+
context: TContext,
|
|
6097
|
+
a: A,
|
|
6098
|
+
b: B,
|
|
6099
|
+
): (t: T) => TReturn;
|
|
5860
6100
|
/**
|
|
5861
6101
|
* Takes a function and returns a new one that will always have a particular context.
|
|
5862
6102
|
* @param funсtion The function whose context will be changed.
|
|
@@ -5985,13 +6225,11 @@ $( "#test" )
|
|
|
5985
6225
|
</html>
|
|
5986
6226
|
```
|
|
5987
6227
|
*/
|
|
5988
|
-
proxy<TContext,
|
|
5989
|
-
TReturn,
|
|
5990
|
-
|
|
5991
|
-
|
|
5992
|
-
|
|
5993
|
-
context: TContext,
|
|
5994
|
-
a: A): (t: T) => TReturn;
|
|
6228
|
+
proxy<TContext, TReturn, A, T>(
|
|
6229
|
+
funсtion: (this: TContext, a: A, t: T) => TReturn,
|
|
6230
|
+
context: TContext,
|
|
6231
|
+
a: A,
|
|
6232
|
+
): (t: T) => TReturn;
|
|
5995
6233
|
/**
|
|
5996
6234
|
* Takes a function and returns a new one that will always have a particular context.
|
|
5997
6235
|
* @param funсtion The function whose context will be changed.
|
|
@@ -6119,10 +6357,7 @@ $( "#test" )
|
|
|
6119
6357
|
</html>
|
|
6120
6358
|
```
|
|
6121
6359
|
*/
|
|
6122
|
-
proxy<TContext,
|
|
6123
|
-
TReturn,
|
|
6124
|
-
T>(funсtion: (this: TContext, t: T) => TReturn,
|
|
6125
|
-
context: TContext): (t: T) => TReturn;
|
|
6360
|
+
proxy<TContext, TReturn, T>(funсtion: (this: TContext, t: T) => TReturn, context: TContext): (t: T) => TReturn;
|
|
6126
6361
|
|
|
6127
6362
|
// #endregion
|
|
6128
6363
|
|
|
@@ -6263,13 +6498,17 @@ $( "#test" )
|
|
|
6263
6498
|
</html>
|
|
6264
6499
|
```
|
|
6265
6500
|
*/
|
|
6266
|
-
proxy<TContext,
|
|
6267
|
-
TReturn,
|
|
6268
|
-
|
|
6269
|
-
|
|
6270
|
-
|
|
6271
|
-
|
|
6272
|
-
|
|
6501
|
+
proxy<TContext, TReturn, A, B, C, D, E, F, G, T, U>(
|
|
6502
|
+
funсtion: (this: TContext, a: A, b: B, c: C, d: D, e: E, f: F, g: G, t: T, u: U) => TReturn,
|
|
6503
|
+
context: TContext,
|
|
6504
|
+
a: A,
|
|
6505
|
+
b: B,
|
|
6506
|
+
c: C,
|
|
6507
|
+
d: D,
|
|
6508
|
+
e: E,
|
|
6509
|
+
f: F,
|
|
6510
|
+
g: G,
|
|
6511
|
+
): (t: T, u: U) => TReturn;
|
|
6273
6512
|
/**
|
|
6274
6513
|
* Takes a function and returns a new one that will always have a particular context.
|
|
6275
6514
|
* @param funсtion The function whose context will be changed.
|
|
@@ -6403,13 +6642,16 @@ $( "#test" )
|
|
|
6403
6642
|
</html>
|
|
6404
6643
|
```
|
|
6405
6644
|
*/
|
|
6406
|
-
proxy<TContext,
|
|
6407
|
-
TReturn,
|
|
6408
|
-
|
|
6409
|
-
|
|
6410
|
-
|
|
6411
|
-
|
|
6412
|
-
|
|
6645
|
+
proxy<TContext, TReturn, A, B, C, D, E, F, T, U>(
|
|
6646
|
+
funсtion: (this: TContext, a: A, b: B, c: C, d: D, e: E, f: F, t: T, u: U) => TReturn,
|
|
6647
|
+
context: TContext,
|
|
6648
|
+
a: A,
|
|
6649
|
+
b: B,
|
|
6650
|
+
c: C,
|
|
6651
|
+
d: D,
|
|
6652
|
+
e: E,
|
|
6653
|
+
f: F,
|
|
6654
|
+
): (t: T, u: U) => TReturn;
|
|
6413
6655
|
/**
|
|
6414
6656
|
* Takes a function and returns a new one that will always have a particular context.
|
|
6415
6657
|
* @param funсtion The function whose context will be changed.
|
|
@@ -6542,13 +6784,15 @@ $( "#test" )
|
|
|
6542
6784
|
</html>
|
|
6543
6785
|
```
|
|
6544
6786
|
*/
|
|
6545
|
-
proxy<TContext,
|
|
6546
|
-
TReturn,
|
|
6547
|
-
|
|
6548
|
-
|
|
6549
|
-
|
|
6550
|
-
|
|
6551
|
-
|
|
6787
|
+
proxy<TContext, TReturn, A, B, C, D, E, T, U>(
|
|
6788
|
+
funсtion: (this: TContext, a: A, b: B, c: C, d: D, e: E, t: T, u: U) => TReturn,
|
|
6789
|
+
context: TContext,
|
|
6790
|
+
a: A,
|
|
6791
|
+
b: B,
|
|
6792
|
+
c: C,
|
|
6793
|
+
d: D,
|
|
6794
|
+
e: E,
|
|
6795
|
+
): (t: T, u: U) => TReturn;
|
|
6552
6796
|
/**
|
|
6553
6797
|
* Takes a function and returns a new one that will always have a particular context.
|
|
6554
6798
|
* @param funсtion The function whose context will be changed.
|
|
@@ -6680,13 +6924,14 @@ $( "#test" )
|
|
|
6680
6924
|
</html>
|
|
6681
6925
|
```
|
|
6682
6926
|
*/
|
|
6683
|
-
proxy<TContext,
|
|
6684
|
-
TReturn,
|
|
6685
|
-
|
|
6686
|
-
|
|
6687
|
-
|
|
6688
|
-
|
|
6689
|
-
|
|
6927
|
+
proxy<TContext, TReturn, A, B, C, D, T, U>(
|
|
6928
|
+
funсtion: (this: TContext, a: A, b: B, c: C, d: D, t: T, u: U) => TReturn,
|
|
6929
|
+
context: TContext,
|
|
6930
|
+
a: A,
|
|
6931
|
+
b: B,
|
|
6932
|
+
c: C,
|
|
6933
|
+
d: D,
|
|
6934
|
+
): (t: T, u: U) => TReturn;
|
|
6690
6935
|
/**
|
|
6691
6936
|
* Takes a function and returns a new one that will always have a particular context.
|
|
6692
6937
|
* @param funсtion The function whose context will be changed.
|
|
@@ -6817,13 +7062,13 @@ $( "#test" )
|
|
|
6817
7062
|
</html>
|
|
6818
7063
|
```
|
|
6819
7064
|
*/
|
|
6820
|
-
proxy<TContext,
|
|
6821
|
-
TReturn,
|
|
6822
|
-
|
|
6823
|
-
|
|
6824
|
-
|
|
6825
|
-
|
|
6826
|
-
|
|
7065
|
+
proxy<TContext, TReturn, A, B, C, T, U>(
|
|
7066
|
+
funсtion: (this: TContext, a: A, b: B, c: C, t: T, u: U) => TReturn,
|
|
7067
|
+
context: TContext,
|
|
7068
|
+
a: A,
|
|
7069
|
+
b: B,
|
|
7070
|
+
c: C,
|
|
7071
|
+
): (t: T, u: U) => TReturn;
|
|
6827
7072
|
/**
|
|
6828
7073
|
* Takes a function and returns a new one that will always have a particular context.
|
|
6829
7074
|
* @param funсtion The function whose context will be changed.
|
|
@@ -6953,13 +7198,12 @@ $( "#test" )
|
|
|
6953
7198
|
</html>
|
|
6954
7199
|
```
|
|
6955
7200
|
*/
|
|
6956
|
-
proxy<TContext,
|
|
6957
|
-
TReturn,
|
|
6958
|
-
|
|
6959
|
-
|
|
6960
|
-
|
|
6961
|
-
|
|
6962
|
-
a: A, b: B): (t: T, u: U) => TReturn;
|
|
7201
|
+
proxy<TContext, TReturn, A, B, T, U>(
|
|
7202
|
+
funсtion: (this: TContext, a: A, b: B, t: T, u: U) => TReturn,
|
|
7203
|
+
context: TContext,
|
|
7204
|
+
a: A,
|
|
7205
|
+
b: B,
|
|
7206
|
+
): (t: T, u: U) => TReturn;
|
|
6963
7207
|
/**
|
|
6964
7208
|
* Takes a function and returns a new one that will always have a particular context.
|
|
6965
7209
|
* @param funсtion The function whose context will be changed.
|
|
@@ -7088,13 +7332,11 @@ $( "#test" )
|
|
|
7088
7332
|
</html>
|
|
7089
7333
|
```
|
|
7090
7334
|
*/
|
|
7091
|
-
proxy<TContext,
|
|
7092
|
-
TReturn,
|
|
7093
|
-
|
|
7094
|
-
|
|
7095
|
-
|
|
7096
|
-
context: TContext,
|
|
7097
|
-
a: A): (t: T, u: U) => TReturn;
|
|
7335
|
+
proxy<TContext, TReturn, A, T, U>(
|
|
7336
|
+
funсtion: (this: TContext, a: A, t: T, u: U) => TReturn,
|
|
7337
|
+
context: TContext,
|
|
7338
|
+
a: A,
|
|
7339
|
+
): (t: T, u: U) => TReturn;
|
|
7098
7340
|
/**
|
|
7099
7341
|
* Takes a function and returns a new one that will always have a particular context.
|
|
7100
7342
|
* @param funсtion The function whose context will be changed.
|
|
@@ -7222,10 +7464,10 @@ $( "#test" )
|
|
|
7222
7464
|
</html>
|
|
7223
7465
|
```
|
|
7224
7466
|
*/
|
|
7225
|
-
proxy<TContext,
|
|
7226
|
-
TReturn,
|
|
7227
|
-
|
|
7228
|
-
|
|
7467
|
+
proxy<TContext, TReturn, T, U>(
|
|
7468
|
+
funсtion: (this: TContext, t: T, u: U) => TReturn,
|
|
7469
|
+
context: TContext,
|
|
7470
|
+
): (t: T, u: U) => TReturn;
|
|
7229
7471
|
|
|
7230
7472
|
// #endregion
|
|
7231
7473
|
|
|
@@ -7366,13 +7608,17 @@ $( "#test" )
|
|
|
7366
7608
|
</html>
|
|
7367
7609
|
```
|
|
7368
7610
|
*/
|
|
7369
|
-
proxy<TContext,
|
|
7370
|
-
TReturn,
|
|
7371
|
-
|
|
7372
|
-
|
|
7373
|
-
|
|
7374
|
-
|
|
7375
|
-
|
|
7611
|
+
proxy<TContext, TReturn, A, B, C, D, E, F, G, T, U, V>(
|
|
7612
|
+
funсtion: (this: TContext, a: A, b: B, c: C, d: D, e: E, f: F, g: G, t: T, u: U, v: V) => TReturn,
|
|
7613
|
+
context: TContext,
|
|
7614
|
+
a: A,
|
|
7615
|
+
b: B,
|
|
7616
|
+
c: C,
|
|
7617
|
+
d: D,
|
|
7618
|
+
e: E,
|
|
7619
|
+
f: F,
|
|
7620
|
+
g: G,
|
|
7621
|
+
): (t: T, u: U, v: V) => TReturn;
|
|
7376
7622
|
/**
|
|
7377
7623
|
* Takes a function and returns a new one that will always have a particular context.
|
|
7378
7624
|
* @param funсtion The function whose context will be changed.
|
|
@@ -7506,13 +7752,16 @@ $( "#test" )
|
|
|
7506
7752
|
</html>
|
|
7507
7753
|
```
|
|
7508
7754
|
*/
|
|
7509
|
-
proxy<TContext,
|
|
7510
|
-
TReturn,
|
|
7511
|
-
|
|
7512
|
-
|
|
7513
|
-
|
|
7514
|
-
|
|
7515
|
-
|
|
7755
|
+
proxy<TContext, TReturn, A, B, C, D, E, F, T, U, V>(
|
|
7756
|
+
funсtion: (this: TContext, a: A, b: B, c: C, d: D, e: E, f: F, t: T, u: U, v: V) => TReturn,
|
|
7757
|
+
context: TContext,
|
|
7758
|
+
a: A,
|
|
7759
|
+
b: B,
|
|
7760
|
+
c: C,
|
|
7761
|
+
d: D,
|
|
7762
|
+
e: E,
|
|
7763
|
+
f: F,
|
|
7764
|
+
): (t: T, u: U, v: V) => TReturn;
|
|
7516
7765
|
/**
|
|
7517
7766
|
* Takes a function and returns a new one that will always have a particular context.
|
|
7518
7767
|
* @param funсtion The function whose context will be changed.
|
|
@@ -7645,13 +7894,15 @@ $( "#test" )
|
|
|
7645
7894
|
</html>
|
|
7646
7895
|
```
|
|
7647
7896
|
*/
|
|
7648
|
-
proxy<TContext,
|
|
7649
|
-
TReturn,
|
|
7650
|
-
|
|
7651
|
-
|
|
7652
|
-
|
|
7653
|
-
|
|
7654
|
-
|
|
7897
|
+
proxy<TContext, TReturn, A, B, C, D, E, T, U, V>(
|
|
7898
|
+
funсtion: (this: TContext, a: A, b: B, c: C, d: D, e: E, t: T, u: U, v: V) => TReturn,
|
|
7899
|
+
context: TContext,
|
|
7900
|
+
a: A,
|
|
7901
|
+
b: B,
|
|
7902
|
+
c: C,
|
|
7903
|
+
d: D,
|
|
7904
|
+
e: E,
|
|
7905
|
+
): (t: T, u: U, v: V) => TReturn;
|
|
7655
7906
|
/**
|
|
7656
7907
|
* Takes a function and returns a new one that will always have a particular context.
|
|
7657
7908
|
* @param funсtion The function whose context will be changed.
|
|
@@ -7783,13 +8034,14 @@ $( "#test" )
|
|
|
7783
8034
|
</html>
|
|
7784
8035
|
```
|
|
7785
8036
|
*/
|
|
7786
|
-
proxy<TContext,
|
|
7787
|
-
TReturn,
|
|
7788
|
-
|
|
7789
|
-
|
|
7790
|
-
|
|
7791
|
-
|
|
7792
|
-
|
|
8037
|
+
proxy<TContext, TReturn, A, B, C, D, T, U, V>(
|
|
8038
|
+
funсtion: (this: TContext, a: A, b: B, c: C, d: D, t: T, u: U, v: V) => TReturn,
|
|
8039
|
+
context: TContext,
|
|
8040
|
+
a: A,
|
|
8041
|
+
b: B,
|
|
8042
|
+
c: C,
|
|
8043
|
+
d: D,
|
|
8044
|
+
): (t: T, u: U, v: V) => TReturn;
|
|
7793
8045
|
/**
|
|
7794
8046
|
* Takes a function and returns a new one that will always have a particular context.
|
|
7795
8047
|
* @param funсtion The function whose context will be changed.
|
|
@@ -7920,13 +8172,13 @@ $( "#test" )
|
|
|
7920
8172
|
</html>
|
|
7921
8173
|
```
|
|
7922
8174
|
*/
|
|
7923
|
-
proxy<TContext,
|
|
7924
|
-
TReturn,
|
|
7925
|
-
|
|
7926
|
-
|
|
7927
|
-
|
|
7928
|
-
|
|
7929
|
-
|
|
8175
|
+
proxy<TContext, TReturn, A, B, C, T, U, V>(
|
|
8176
|
+
funсtion: (this: TContext, a: A, b: B, c: C, t: T, u: U, v: V) => TReturn,
|
|
8177
|
+
context: TContext,
|
|
8178
|
+
a: A,
|
|
8179
|
+
b: B,
|
|
8180
|
+
c: C,
|
|
8181
|
+
): (t: T, u: U, v: V) => TReturn;
|
|
7930
8182
|
/**
|
|
7931
8183
|
* Takes a function and returns a new one that will always have a particular context.
|
|
7932
8184
|
* @param funсtion The function whose context will be changed.
|
|
@@ -8056,13 +8308,12 @@ $( "#test" )
|
|
|
8056
8308
|
</html>
|
|
8057
8309
|
```
|
|
8058
8310
|
*/
|
|
8059
|
-
proxy<TContext,
|
|
8060
|
-
TReturn,
|
|
8061
|
-
|
|
8062
|
-
|
|
8063
|
-
|
|
8064
|
-
|
|
8065
|
-
a: A, b: B): (t: T, u: U, v: V) => TReturn;
|
|
8311
|
+
proxy<TContext, TReturn, A, B, T, U, V>(
|
|
8312
|
+
funсtion: (this: TContext, a: A, b: B, t: T, u: U, v: V) => TReturn,
|
|
8313
|
+
context: TContext,
|
|
8314
|
+
a: A,
|
|
8315
|
+
b: B,
|
|
8316
|
+
): (t: T, u: U, v: V) => TReturn;
|
|
8066
8317
|
/**
|
|
8067
8318
|
* Takes a function and returns a new one that will always have a particular context.
|
|
8068
8319
|
* @param funсtion The function whose context will be changed.
|
|
@@ -8191,13 +8442,11 @@ $( "#test" )
|
|
|
8191
8442
|
</html>
|
|
8192
8443
|
```
|
|
8193
8444
|
*/
|
|
8194
|
-
proxy<TContext,
|
|
8195
|
-
TReturn,
|
|
8196
|
-
|
|
8197
|
-
|
|
8198
|
-
|
|
8199
|
-
context: TContext,
|
|
8200
|
-
a: A): (t: T, u: U, v: V) => TReturn;
|
|
8445
|
+
proxy<TContext, TReturn, A, T, U, V>(
|
|
8446
|
+
funсtion: (this: TContext, a: A, t: T, u: U, v: V) => TReturn,
|
|
8447
|
+
context: TContext,
|
|
8448
|
+
a: A,
|
|
8449
|
+
): (t: T, u: U, v: V) => TReturn;
|
|
8201
8450
|
/**
|
|
8202
8451
|
* Takes a function and returns a new one that will always have a particular context.
|
|
8203
8452
|
* @param funсtion The function whose context will be changed.
|
|
@@ -8325,10 +8574,10 @@ $( "#test" )
|
|
|
8325
8574
|
</html>
|
|
8326
8575
|
```
|
|
8327
8576
|
*/
|
|
8328
|
-
proxy<TContext,
|
|
8329
|
-
TReturn,
|
|
8330
|
-
|
|
8331
|
-
|
|
8577
|
+
proxy<TContext, TReturn, T, U, V>(
|
|
8578
|
+
funсtion: (this: TContext, t: T, u: U, v: V) => TReturn,
|
|
8579
|
+
context: TContext,
|
|
8580
|
+
): (t: T, u: U, v: V) => TReturn;
|
|
8332
8581
|
|
|
8333
8582
|
// #endregion
|
|
8334
8583
|
|
|
@@ -8469,13 +8718,17 @@ $( "#test" )
|
|
|
8469
8718
|
</html>
|
|
8470
8719
|
```
|
|
8471
8720
|
*/
|
|
8472
|
-
proxy<TContext,
|
|
8473
|
-
TReturn,
|
|
8474
|
-
|
|
8475
|
-
|
|
8476
|
-
|
|
8477
|
-
|
|
8478
|
-
|
|
8721
|
+
proxy<TContext, TReturn, A, B, C, D, E, F, G, T, U, V, W>(
|
|
8722
|
+
funсtion: (this: TContext, a: A, b: B, c: C, d: D, e: E, f: F, g: G, t: T, u: U, v: V, w: W) => TReturn,
|
|
8723
|
+
context: TContext,
|
|
8724
|
+
a: A,
|
|
8725
|
+
b: B,
|
|
8726
|
+
c: C,
|
|
8727
|
+
d: D,
|
|
8728
|
+
e: E,
|
|
8729
|
+
f: F,
|
|
8730
|
+
g: G,
|
|
8731
|
+
): (t: T, u: U, v: V, w: W) => TReturn;
|
|
8479
8732
|
/**
|
|
8480
8733
|
* Takes a function and returns a new one that will always have a particular context.
|
|
8481
8734
|
* @param funсtion The function whose context will be changed.
|
|
@@ -8609,13 +8862,16 @@ $( "#test" )
|
|
|
8609
8862
|
</html>
|
|
8610
8863
|
```
|
|
8611
8864
|
*/
|
|
8612
|
-
proxy<TContext,
|
|
8613
|
-
TReturn,
|
|
8614
|
-
|
|
8615
|
-
|
|
8616
|
-
|
|
8617
|
-
|
|
8618
|
-
|
|
8865
|
+
proxy<TContext, TReturn, A, B, C, D, E, F, T, U, V, W>(
|
|
8866
|
+
funсtion: (this: TContext, a: A, b: B, c: C, d: D, e: E, f: F, t: T, u: U, v: V, w: W) => TReturn,
|
|
8867
|
+
context: TContext,
|
|
8868
|
+
a: A,
|
|
8869
|
+
b: B,
|
|
8870
|
+
c: C,
|
|
8871
|
+
d: D,
|
|
8872
|
+
e: E,
|
|
8873
|
+
f: F,
|
|
8874
|
+
): (t: T, u: U, v: V, w: W) => TReturn;
|
|
8619
8875
|
/**
|
|
8620
8876
|
* Takes a function and returns a new one that will always have a particular context.
|
|
8621
8877
|
* @param funсtion The function whose context will be changed.
|
|
@@ -8748,13 +9004,15 @@ $( "#test" )
|
|
|
8748
9004
|
</html>
|
|
8749
9005
|
```
|
|
8750
9006
|
*/
|
|
8751
|
-
proxy<TContext,
|
|
8752
|
-
TReturn,
|
|
8753
|
-
|
|
8754
|
-
|
|
8755
|
-
|
|
8756
|
-
|
|
8757
|
-
|
|
9007
|
+
proxy<TContext, TReturn, A, B, C, D, E, T, U, V, W>(
|
|
9008
|
+
funсtion: (this: TContext, a: A, b: B, c: C, d: D, e: E, t: T, u: U, v: V, w: W) => TReturn,
|
|
9009
|
+
context: TContext,
|
|
9010
|
+
a: A,
|
|
9011
|
+
b: B,
|
|
9012
|
+
c: C,
|
|
9013
|
+
d: D,
|
|
9014
|
+
e: E,
|
|
9015
|
+
): (t: T, u: U, v: V, w: W) => TReturn;
|
|
8758
9016
|
/**
|
|
8759
9017
|
* Takes a function and returns a new one that will always have a particular context.
|
|
8760
9018
|
* @param funсtion The function whose context will be changed.
|
|
@@ -8886,13 +9144,14 @@ $( "#test" )
|
|
|
8886
9144
|
</html>
|
|
8887
9145
|
```
|
|
8888
9146
|
*/
|
|
8889
|
-
proxy<TContext,
|
|
8890
|
-
TReturn,
|
|
8891
|
-
|
|
8892
|
-
|
|
8893
|
-
|
|
8894
|
-
|
|
8895
|
-
|
|
9147
|
+
proxy<TContext, TReturn, A, B, C, D, T, U, V, W>(
|
|
9148
|
+
funсtion: (this: TContext, a: A, b: B, c: C, d: D, t: T, u: U, v: V, w: W) => TReturn,
|
|
9149
|
+
context: TContext,
|
|
9150
|
+
a: A,
|
|
9151
|
+
b: B,
|
|
9152
|
+
c: C,
|
|
9153
|
+
d: D,
|
|
9154
|
+
): (t: T, u: U, v: V, w: W) => TReturn;
|
|
8896
9155
|
/**
|
|
8897
9156
|
* Takes a function and returns a new one that will always have a particular context.
|
|
8898
9157
|
* @param funсtion The function whose context will be changed.
|
|
@@ -9023,13 +9282,13 @@ $( "#test" )
|
|
|
9023
9282
|
</html>
|
|
9024
9283
|
```
|
|
9025
9284
|
*/
|
|
9026
|
-
proxy<TContext,
|
|
9027
|
-
TReturn,
|
|
9028
|
-
|
|
9029
|
-
|
|
9030
|
-
|
|
9031
|
-
|
|
9032
|
-
|
|
9285
|
+
proxy<TContext, TReturn, A, B, C, T, U, V, W>(
|
|
9286
|
+
funсtion: (this: TContext, a: A, b: B, c: C, t: T, u: U, v: V, w: W) => TReturn,
|
|
9287
|
+
context: TContext,
|
|
9288
|
+
a: A,
|
|
9289
|
+
b: B,
|
|
9290
|
+
c: C,
|
|
9291
|
+
): (t: T, u: U, v: V, w: W) => TReturn;
|
|
9033
9292
|
/**
|
|
9034
9293
|
* Takes a function and returns a new one that will always have a particular context.
|
|
9035
9294
|
* @param funсtion The function whose context will be changed.
|
|
@@ -9159,13 +9418,12 @@ $( "#test" )
|
|
|
9159
9418
|
</html>
|
|
9160
9419
|
```
|
|
9161
9420
|
*/
|
|
9162
|
-
proxy<TContext,
|
|
9163
|
-
TReturn,
|
|
9164
|
-
|
|
9165
|
-
|
|
9166
|
-
|
|
9167
|
-
|
|
9168
|
-
a: A, b: B): (t: T, u: U, v: V, w: W) => TReturn;
|
|
9421
|
+
proxy<TContext, TReturn, A, B, T, U, V, W>(
|
|
9422
|
+
funсtion: (this: TContext, a: A, b: B, t: T, u: U, v: V, w: W) => TReturn,
|
|
9423
|
+
context: TContext,
|
|
9424
|
+
a: A,
|
|
9425
|
+
b: B,
|
|
9426
|
+
): (t: T, u: U, v: V, w: W) => TReturn;
|
|
9169
9427
|
/**
|
|
9170
9428
|
* Takes a function and returns a new one that will always have a particular context.
|
|
9171
9429
|
* @param funсtion The function whose context will be changed.
|
|
@@ -9294,13 +9552,11 @@ $( "#test" )
|
|
|
9294
9552
|
</html>
|
|
9295
9553
|
```
|
|
9296
9554
|
*/
|
|
9297
|
-
proxy<TContext,
|
|
9298
|
-
TReturn,
|
|
9299
|
-
|
|
9300
|
-
|
|
9301
|
-
|
|
9302
|
-
context: TContext,
|
|
9303
|
-
a: A): (t: T, u: U, v: V, w: W) => TReturn;
|
|
9555
|
+
proxy<TContext, TReturn, A, T, U, V, W>(
|
|
9556
|
+
funсtion: (this: TContext, a: A, t: T, u: U, v: V, w: W) => TReturn,
|
|
9557
|
+
context: TContext,
|
|
9558
|
+
a: A,
|
|
9559
|
+
): (t: T, u: U, v: V, w: W) => TReturn;
|
|
9304
9560
|
/**
|
|
9305
9561
|
* Takes a function and returns a new one that will always have a particular context.
|
|
9306
9562
|
* @param funсtion The function whose context will be changed.
|
|
@@ -9428,10 +9684,10 @@ $( "#test" )
|
|
|
9428
9684
|
</html>
|
|
9429
9685
|
```
|
|
9430
9686
|
*/
|
|
9431
|
-
proxy<TContext,
|
|
9432
|
-
TReturn,
|
|
9433
|
-
|
|
9434
|
-
|
|
9687
|
+
proxy<TContext, TReturn, T, U, V, W>(
|
|
9688
|
+
funсtion: (this: TContext, t: T, u: U, v: V, w: W) => TReturn,
|
|
9689
|
+
context: TContext,
|
|
9690
|
+
): (t: T, u: U, v: V, w: W) => TReturn;
|
|
9435
9691
|
|
|
9436
9692
|
// #endregion
|
|
9437
9693
|
|
|
@@ -9572,13 +9828,17 @@ $( "#test" )
|
|
|
9572
9828
|
</html>
|
|
9573
9829
|
```
|
|
9574
9830
|
*/
|
|
9575
|
-
proxy<TContext,
|
|
9576
|
-
TReturn,
|
|
9577
|
-
|
|
9578
|
-
|
|
9579
|
-
|
|
9580
|
-
|
|
9581
|
-
|
|
9831
|
+
proxy<TContext, TReturn, A, B, C, D, E, F, G, T, U, V, W, X>(
|
|
9832
|
+
funсtion: (this: TContext, a: A, b: B, c: C, d: D, e: E, f: F, g: G, t: T, u: U, v: V, w: W, x: X) => TReturn,
|
|
9833
|
+
context: TContext,
|
|
9834
|
+
a: A,
|
|
9835
|
+
b: B,
|
|
9836
|
+
c: C,
|
|
9837
|
+
d: D,
|
|
9838
|
+
e: E,
|
|
9839
|
+
f: F,
|
|
9840
|
+
g: G,
|
|
9841
|
+
): (t: T, u: U, v: V, w: W, x: X) => TReturn;
|
|
9582
9842
|
/**
|
|
9583
9843
|
* Takes a function and returns a new one that will always have a particular context.
|
|
9584
9844
|
* @param funсtion The function whose context will be changed.
|
|
@@ -9712,13 +9972,16 @@ $( "#test" )
|
|
|
9712
9972
|
</html>
|
|
9713
9973
|
```
|
|
9714
9974
|
*/
|
|
9715
|
-
proxy<TContext,
|
|
9716
|
-
TReturn,
|
|
9717
|
-
|
|
9718
|
-
|
|
9719
|
-
|
|
9720
|
-
|
|
9721
|
-
|
|
9975
|
+
proxy<TContext, TReturn, A, B, C, D, E, F, T, U, V, W, X>(
|
|
9976
|
+
funсtion: (this: TContext, a: A, b: B, c: C, d: D, e: E, f: F, t: T, u: U, v: V, w: W, x: X) => TReturn,
|
|
9977
|
+
context: TContext,
|
|
9978
|
+
a: A,
|
|
9979
|
+
b: B,
|
|
9980
|
+
c: C,
|
|
9981
|
+
d: D,
|
|
9982
|
+
e: E,
|
|
9983
|
+
f: F,
|
|
9984
|
+
): (t: T, u: U, v: V, w: W, x: X) => TReturn;
|
|
9722
9985
|
/**
|
|
9723
9986
|
* Takes a function and returns a new one that will always have a particular context.
|
|
9724
9987
|
* @param funсtion The function whose context will be changed.
|
|
@@ -9851,13 +10114,15 @@ $( "#test" )
|
|
|
9851
10114
|
</html>
|
|
9852
10115
|
```
|
|
9853
10116
|
*/
|
|
9854
|
-
proxy<TContext,
|
|
9855
|
-
TReturn,
|
|
9856
|
-
|
|
9857
|
-
|
|
9858
|
-
|
|
9859
|
-
|
|
9860
|
-
|
|
10117
|
+
proxy<TContext, TReturn, A, B, C, D, E, T, U, V, W, X>(
|
|
10118
|
+
funсtion: (this: TContext, a: A, b: B, c: C, d: D, e: E, t: T, u: U, v: V, w: W, x: X) => TReturn,
|
|
10119
|
+
context: TContext,
|
|
10120
|
+
a: A,
|
|
10121
|
+
b: B,
|
|
10122
|
+
c: C,
|
|
10123
|
+
d: D,
|
|
10124
|
+
e: E,
|
|
10125
|
+
): (t: T, u: U, v: V, w: W, x: X) => TReturn;
|
|
9861
10126
|
/**
|
|
9862
10127
|
* Takes a function and returns a new one that will always have a particular context.
|
|
9863
10128
|
* @param funсtion The function whose context will be changed.
|
|
@@ -9989,13 +10254,14 @@ $( "#test" )
|
|
|
9989
10254
|
</html>
|
|
9990
10255
|
```
|
|
9991
10256
|
*/
|
|
9992
|
-
proxy<TContext,
|
|
9993
|
-
TReturn,
|
|
9994
|
-
|
|
9995
|
-
|
|
9996
|
-
|
|
9997
|
-
|
|
9998
|
-
|
|
10257
|
+
proxy<TContext, TReturn, A, B, C, D, T, U, V, W, X>(
|
|
10258
|
+
funсtion: (this: TContext, a: A, b: B, c: C, d: D, t: T, u: U, v: V, w: W, x: X) => TReturn,
|
|
10259
|
+
context: TContext,
|
|
10260
|
+
a: A,
|
|
10261
|
+
b: B,
|
|
10262
|
+
c: C,
|
|
10263
|
+
d: D,
|
|
10264
|
+
): (t: T, u: U, v: V, w: W, x: X) => TReturn;
|
|
9999
10265
|
/**
|
|
10000
10266
|
* Takes a function and returns a new one that will always have a particular context.
|
|
10001
10267
|
* @param funсtion The function whose context will be changed.
|
|
@@ -10126,13 +10392,13 @@ $( "#test" )
|
|
|
10126
10392
|
</html>
|
|
10127
10393
|
```
|
|
10128
10394
|
*/
|
|
10129
|
-
proxy<TContext,
|
|
10130
|
-
TReturn,
|
|
10131
|
-
|
|
10132
|
-
|
|
10133
|
-
|
|
10134
|
-
|
|
10135
|
-
|
|
10395
|
+
proxy<TContext, TReturn, A, B, C, T, U, V, W, X>(
|
|
10396
|
+
funсtion: (this: TContext, a: A, b: B, c: C, t: T, u: U, v: V, w: W, x: X) => TReturn,
|
|
10397
|
+
context: TContext,
|
|
10398
|
+
a: A,
|
|
10399
|
+
b: B,
|
|
10400
|
+
c: C,
|
|
10401
|
+
): (t: T, u: U, v: V, w: W, x: X) => TReturn;
|
|
10136
10402
|
/**
|
|
10137
10403
|
* Takes a function and returns a new one that will always have a particular context.
|
|
10138
10404
|
* @param funсtion The function whose context will be changed.
|
|
@@ -10262,13 +10528,12 @@ $( "#test" )
|
|
|
10262
10528
|
</html>
|
|
10263
10529
|
```
|
|
10264
10530
|
*/
|
|
10265
|
-
proxy<TContext,
|
|
10266
|
-
TReturn,
|
|
10267
|
-
|
|
10268
|
-
|
|
10269
|
-
|
|
10270
|
-
|
|
10271
|
-
a: A, b: B): (t: T, u: U, v: V, w: W, x: X) => TReturn;
|
|
10531
|
+
proxy<TContext, TReturn, A, B, T, U, V, W, X>(
|
|
10532
|
+
funсtion: (this: TContext, a: A, b: B, t: T, u: U, v: V, w: W, x: X) => TReturn,
|
|
10533
|
+
context: TContext,
|
|
10534
|
+
a: A,
|
|
10535
|
+
b: B,
|
|
10536
|
+
): (t: T, u: U, v: V, w: W, x: X) => TReturn;
|
|
10272
10537
|
/**
|
|
10273
10538
|
* Takes a function and returns a new one that will always have a particular context.
|
|
10274
10539
|
* @param funсtion The function whose context will be changed.
|
|
@@ -10397,13 +10662,11 @@ $( "#test" )
|
|
|
10397
10662
|
</html>
|
|
10398
10663
|
```
|
|
10399
10664
|
*/
|
|
10400
|
-
proxy<TContext,
|
|
10401
|
-
TReturn,
|
|
10402
|
-
|
|
10403
|
-
|
|
10404
|
-
|
|
10405
|
-
context: TContext,
|
|
10406
|
-
a: A): (t: T, u: U, v: V, w: W, x: X) => TReturn;
|
|
10665
|
+
proxy<TContext, TReturn, A, T, U, V, W, X>(
|
|
10666
|
+
funсtion: (this: TContext, a: A, t: T, u: U, v: V, w: W, x: X) => TReturn,
|
|
10667
|
+
context: TContext,
|
|
10668
|
+
a: A,
|
|
10669
|
+
): (t: T, u: U, v: V, w: W, x: X) => TReturn;
|
|
10407
10670
|
/**
|
|
10408
10671
|
* Takes a function and returns a new one that will always have a particular context.
|
|
10409
10672
|
* @param funсtion The function whose context will be changed.
|
|
@@ -10531,10 +10794,10 @@ $( "#test" )
|
|
|
10531
10794
|
</html>
|
|
10532
10795
|
```
|
|
10533
10796
|
*/
|
|
10534
|
-
proxy<TContext,
|
|
10535
|
-
TReturn,
|
|
10536
|
-
|
|
10537
|
-
|
|
10797
|
+
proxy<TContext, TReturn, T, U, V, W, X>(
|
|
10798
|
+
funсtion: (this: TContext, t: T, u: U, v: V, w: W, x: X) => TReturn,
|
|
10799
|
+
context: TContext,
|
|
10800
|
+
): (t: T, u: U, v: V, w: W, x: X) => TReturn;
|
|
10538
10801
|
|
|
10539
10802
|
// #endregion
|
|
10540
10803
|
|
|
@@ -10675,13 +10938,32 @@ $( "#test" )
|
|
|
10675
10938
|
</html>
|
|
10676
10939
|
```
|
|
10677
10940
|
*/
|
|
10678
|
-
proxy<TContext,
|
|
10679
|
-
|
|
10680
|
-
|
|
10681
|
-
|
|
10682
|
-
|
|
10683
|
-
|
|
10684
|
-
|
|
10941
|
+
proxy<TContext, TReturn, A, B, C, D, E, F, G, T, U, V, W, X, Y>(
|
|
10942
|
+
funсtion: (
|
|
10943
|
+
this: TContext,
|
|
10944
|
+
a: A,
|
|
10945
|
+
b: B,
|
|
10946
|
+
c: C,
|
|
10947
|
+
d: D,
|
|
10948
|
+
e: E,
|
|
10949
|
+
f: F,
|
|
10950
|
+
g: G,
|
|
10951
|
+
t: T,
|
|
10952
|
+
u: U,
|
|
10953
|
+
v: V,
|
|
10954
|
+
w: W,
|
|
10955
|
+
x: X,
|
|
10956
|
+
y: Y,
|
|
10957
|
+
) => TReturn,
|
|
10958
|
+
context: TContext,
|
|
10959
|
+
a: A,
|
|
10960
|
+
b: B,
|
|
10961
|
+
c: C,
|
|
10962
|
+
d: D,
|
|
10963
|
+
e: E,
|
|
10964
|
+
f: F,
|
|
10965
|
+
g: G,
|
|
10966
|
+
): (t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn;
|
|
10685
10967
|
/**
|
|
10686
10968
|
* Takes a function and returns a new one that will always have a particular context.
|
|
10687
10969
|
* @param funсtion The function whose context will be changed.
|
|
@@ -10815,13 +11097,16 @@ $( "#test" )
|
|
|
10815
11097
|
</html>
|
|
10816
11098
|
```
|
|
10817
11099
|
*/
|
|
10818
|
-
proxy<TContext,
|
|
10819
|
-
TReturn,
|
|
10820
|
-
|
|
10821
|
-
|
|
10822
|
-
|
|
10823
|
-
|
|
10824
|
-
|
|
11100
|
+
proxy<TContext, TReturn, A, B, C, D, E, F, T, U, V, W, X, Y>(
|
|
11101
|
+
funсtion: (this: TContext, a: A, b: B, c: C, d: D, e: E, f: F, t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn,
|
|
11102
|
+
context: TContext,
|
|
11103
|
+
a: A,
|
|
11104
|
+
b: B,
|
|
11105
|
+
c: C,
|
|
11106
|
+
d: D,
|
|
11107
|
+
e: E,
|
|
11108
|
+
f: F,
|
|
11109
|
+
): (t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn;
|
|
10825
11110
|
/**
|
|
10826
11111
|
* Takes a function and returns a new one that will always have a particular context.
|
|
10827
11112
|
* @param funсtion The function whose context will be changed.
|
|
@@ -10954,13 +11239,15 @@ $( "#test" )
|
|
|
10954
11239
|
</html>
|
|
10955
11240
|
```
|
|
10956
11241
|
*/
|
|
10957
|
-
proxy<TContext,
|
|
10958
|
-
TReturn,
|
|
10959
|
-
|
|
10960
|
-
|
|
10961
|
-
|
|
10962
|
-
|
|
10963
|
-
|
|
11242
|
+
proxy<TContext, TReturn, A, B, C, D, E, T, U, V, W, X, Y>(
|
|
11243
|
+
funсtion: (this: TContext, a: A, b: B, c: C, d: D, e: E, t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn,
|
|
11244
|
+
context: TContext,
|
|
11245
|
+
a: A,
|
|
11246
|
+
b: B,
|
|
11247
|
+
c: C,
|
|
11248
|
+
d: D,
|
|
11249
|
+
e: E,
|
|
11250
|
+
): (t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn;
|
|
10964
11251
|
/**
|
|
10965
11252
|
* Takes a function and returns a new one that will always have a particular context.
|
|
10966
11253
|
* @param funсtion The function whose context will be changed.
|
|
@@ -11092,13 +11379,14 @@ $( "#test" )
|
|
|
11092
11379
|
</html>
|
|
11093
11380
|
```
|
|
11094
11381
|
*/
|
|
11095
|
-
proxy<TContext,
|
|
11096
|
-
TReturn,
|
|
11097
|
-
|
|
11098
|
-
|
|
11099
|
-
|
|
11100
|
-
|
|
11101
|
-
|
|
11382
|
+
proxy<TContext, TReturn, A, B, C, D, T, U, V, W, X, Y>(
|
|
11383
|
+
funсtion: (this: TContext, a: A, b: B, c: C, d: D, t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn,
|
|
11384
|
+
context: TContext,
|
|
11385
|
+
a: A,
|
|
11386
|
+
b: B,
|
|
11387
|
+
c: C,
|
|
11388
|
+
d: D,
|
|
11389
|
+
): (t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn;
|
|
11102
11390
|
/**
|
|
11103
11391
|
* Takes a function and returns a new one that will always have a particular context.
|
|
11104
11392
|
* @param funсtion The function whose context will be changed.
|
|
@@ -11229,13 +11517,13 @@ $( "#test" )
|
|
|
11229
11517
|
</html>
|
|
11230
11518
|
```
|
|
11231
11519
|
*/
|
|
11232
|
-
proxy<TContext,
|
|
11233
|
-
TReturn,
|
|
11234
|
-
|
|
11235
|
-
|
|
11236
|
-
|
|
11237
|
-
|
|
11238
|
-
|
|
11520
|
+
proxy<TContext, TReturn, A, B, C, T, U, V, W, X, Y>(
|
|
11521
|
+
funсtion: (this: TContext, a: A, b: B, c: C, t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn,
|
|
11522
|
+
context: TContext,
|
|
11523
|
+
a: A,
|
|
11524
|
+
b: B,
|
|
11525
|
+
c: C,
|
|
11526
|
+
): (t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn;
|
|
11239
11527
|
/**
|
|
11240
11528
|
* Takes a function and returns a new one that will always have a particular context.
|
|
11241
11529
|
* @param funсtion The function whose context will be changed.
|
|
@@ -11365,13 +11653,12 @@ $( "#test" )
|
|
|
11365
11653
|
</html>
|
|
11366
11654
|
```
|
|
11367
11655
|
*/
|
|
11368
|
-
proxy<TContext,
|
|
11369
|
-
TReturn,
|
|
11370
|
-
|
|
11371
|
-
|
|
11372
|
-
|
|
11373
|
-
|
|
11374
|
-
a: A, b: B): (t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn;
|
|
11656
|
+
proxy<TContext, TReturn, A, B, T, U, V, W, X, Y>(
|
|
11657
|
+
funсtion: (this: TContext, a: A, b: B, t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn,
|
|
11658
|
+
context: TContext,
|
|
11659
|
+
a: A,
|
|
11660
|
+
b: B,
|
|
11661
|
+
): (t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn;
|
|
11375
11662
|
/**
|
|
11376
11663
|
* Takes a function and returns a new one that will always have a particular context.
|
|
11377
11664
|
* @param funсtion The function whose context will be changed.
|
|
@@ -11500,13 +11787,11 @@ $( "#test" )
|
|
|
11500
11787
|
</html>
|
|
11501
11788
|
```
|
|
11502
11789
|
*/
|
|
11503
|
-
proxy<TContext,
|
|
11504
|
-
TReturn,
|
|
11505
|
-
|
|
11506
|
-
|
|
11507
|
-
|
|
11508
|
-
context: TContext,
|
|
11509
|
-
a: A): (t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn;
|
|
11790
|
+
proxy<TContext, TReturn, A, T, U, V, W, X, Y>(
|
|
11791
|
+
funсtion: (this: TContext, a: A, t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn,
|
|
11792
|
+
context: TContext,
|
|
11793
|
+
a: A,
|
|
11794
|
+
): (t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn;
|
|
11510
11795
|
/**
|
|
11511
11796
|
* Takes a function and returns a new one that will always have a particular context.
|
|
11512
11797
|
* @param funсtion The function whose context will be changed.
|
|
@@ -11634,10 +11919,10 @@ $( "#test" )
|
|
|
11634
11919
|
</html>
|
|
11635
11920
|
```
|
|
11636
11921
|
*/
|
|
11637
|
-
proxy<TContext,
|
|
11638
|
-
TReturn,
|
|
11639
|
-
|
|
11640
|
-
|
|
11922
|
+
proxy<TContext, TReturn, T, U, V, W, X, Y>(
|
|
11923
|
+
funсtion: (this: TContext, t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn,
|
|
11924
|
+
context: TContext,
|
|
11925
|
+
): (t: T, u: U, v: V, w: W, x: X, y: Y) => TReturn;
|
|
11641
11926
|
|
|
11642
11927
|
// #endregion
|
|
11643
11928
|
|
|
@@ -11778,13 +12063,34 @@ $( "#test" )
|
|
|
11778
12063
|
</html>
|
|
11779
12064
|
```
|
|
11780
12065
|
*/
|
|
11781
|
-
proxy<TContext,
|
|
11782
|
-
|
|
11783
|
-
|
|
11784
|
-
|
|
11785
|
-
|
|
11786
|
-
|
|
11787
|
-
|
|
12066
|
+
proxy<TContext, TReturn, A, B, C, D, E, F, G, T, U, V, W, X, Y, Z>(
|
|
12067
|
+
funсtion: (
|
|
12068
|
+
this: TContext,
|
|
12069
|
+
a: A,
|
|
12070
|
+
b: B,
|
|
12071
|
+
c: C,
|
|
12072
|
+
d: D,
|
|
12073
|
+
e: E,
|
|
12074
|
+
f: F,
|
|
12075
|
+
g: G,
|
|
12076
|
+
t: T,
|
|
12077
|
+
u: U,
|
|
12078
|
+
v: V,
|
|
12079
|
+
w: W,
|
|
12080
|
+
x: X,
|
|
12081
|
+
y: Y,
|
|
12082
|
+
z: Z,
|
|
12083
|
+
...args: any[]
|
|
12084
|
+
) => TReturn,
|
|
12085
|
+
context: TContext,
|
|
12086
|
+
a: A,
|
|
12087
|
+
b: B,
|
|
12088
|
+
c: C,
|
|
12089
|
+
d: D,
|
|
12090
|
+
e: E,
|
|
12091
|
+
f: F,
|
|
12092
|
+
g: G,
|
|
12093
|
+
): (t: T, u: U, v: V, w: W, x: X, y: Y, z: Z, ...args: any[]) => TReturn;
|
|
11788
12094
|
/**
|
|
11789
12095
|
* Takes a function and returns a new one that will always have a particular context.
|
|
11790
12096
|
* @param funсtion The function whose context will be changed.
|
|
@@ -11918,13 +12224,32 @@ $( "#test" )
|
|
|
11918
12224
|
</html>
|
|
11919
12225
|
```
|
|
11920
12226
|
*/
|
|
11921
|
-
proxy<TContext,
|
|
11922
|
-
|
|
11923
|
-
|
|
11924
|
-
|
|
11925
|
-
|
|
11926
|
-
|
|
11927
|
-
|
|
12227
|
+
proxy<TContext, TReturn, A, B, C, D, E, F, T, U, V, W, X, Y, Z>(
|
|
12228
|
+
funсtion: (
|
|
12229
|
+
this: TContext,
|
|
12230
|
+
a: A,
|
|
12231
|
+
b: B,
|
|
12232
|
+
c: C,
|
|
12233
|
+
d: D,
|
|
12234
|
+
e: E,
|
|
12235
|
+
f: F,
|
|
12236
|
+
t: T,
|
|
12237
|
+
u: U,
|
|
12238
|
+
v: V,
|
|
12239
|
+
w: W,
|
|
12240
|
+
x: X,
|
|
12241
|
+
y: Y,
|
|
12242
|
+
z: Z,
|
|
12243
|
+
...args: any[]
|
|
12244
|
+
) => TReturn,
|
|
12245
|
+
context: TContext,
|
|
12246
|
+
a: A,
|
|
12247
|
+
b: B,
|
|
12248
|
+
c: C,
|
|
12249
|
+
d: D,
|
|
12250
|
+
e: E,
|
|
12251
|
+
f: F,
|
|
12252
|
+
): (t: T, u: U, v: V, w: W, x: X, y: Y, z: Z, ...args: any[]) => TReturn;
|
|
11928
12253
|
/**
|
|
11929
12254
|
* Takes a function and returns a new one that will always have a particular context.
|
|
11930
12255
|
* @param funсtion The function whose context will be changed.
|
|
@@ -12057,13 +12382,30 @@ $( "#test" )
|
|
|
12057
12382
|
</html>
|
|
12058
12383
|
```
|
|
12059
12384
|
*/
|
|
12060
|
-
proxy<TContext,
|
|
12061
|
-
|
|
12062
|
-
|
|
12063
|
-
|
|
12064
|
-
|
|
12065
|
-
|
|
12066
|
-
|
|
12385
|
+
proxy<TContext, TReturn, A, B, C, D, E, T, U, V, W, X, Y, Z>(
|
|
12386
|
+
funсtion: (
|
|
12387
|
+
this: TContext,
|
|
12388
|
+
a: A,
|
|
12389
|
+
b: B,
|
|
12390
|
+
c: C,
|
|
12391
|
+
d: D,
|
|
12392
|
+
e: E,
|
|
12393
|
+
t: T,
|
|
12394
|
+
u: U,
|
|
12395
|
+
v: V,
|
|
12396
|
+
w: W,
|
|
12397
|
+
x: X,
|
|
12398
|
+
y: Y,
|
|
12399
|
+
z: Z,
|
|
12400
|
+
...args: any[]
|
|
12401
|
+
) => TReturn,
|
|
12402
|
+
context: TContext,
|
|
12403
|
+
a: A,
|
|
12404
|
+
b: B,
|
|
12405
|
+
c: C,
|
|
12406
|
+
d: D,
|
|
12407
|
+
e: E,
|
|
12408
|
+
): (t: T, u: U, v: V, w: W, x: X, y: Y, z: Z, ...args: any[]) => TReturn;
|
|
12067
12409
|
/**
|
|
12068
12410
|
* Takes a function and returns a new one that will always have a particular context.
|
|
12069
12411
|
* @param funсtion The function whose context will be changed.
|
|
@@ -12195,13 +12537,28 @@ $( "#test" )
|
|
|
12195
12537
|
</html>
|
|
12196
12538
|
```
|
|
12197
12539
|
*/
|
|
12198
|
-
proxy<TContext,
|
|
12199
|
-
|
|
12200
|
-
|
|
12201
|
-
|
|
12202
|
-
|
|
12203
|
-
|
|
12204
|
-
|
|
12540
|
+
proxy<TContext, TReturn, A, B, C, D, T, U, V, W, X, Y, Z>(
|
|
12541
|
+
funсtion: (
|
|
12542
|
+
this: TContext,
|
|
12543
|
+
a: A,
|
|
12544
|
+
b: B,
|
|
12545
|
+
c: C,
|
|
12546
|
+
d: D,
|
|
12547
|
+
t: T,
|
|
12548
|
+
u: U,
|
|
12549
|
+
v: V,
|
|
12550
|
+
w: W,
|
|
12551
|
+
x: X,
|
|
12552
|
+
y: Y,
|
|
12553
|
+
z: Z,
|
|
12554
|
+
...args: any[]
|
|
12555
|
+
) => TReturn,
|
|
12556
|
+
context: TContext,
|
|
12557
|
+
a: A,
|
|
12558
|
+
b: B,
|
|
12559
|
+
c: C,
|
|
12560
|
+
d: D,
|
|
12561
|
+
): (t: T, u: U, v: V, w: W, x: X, y: Y, z: Z, ...args: any[]) => TReturn;
|
|
12205
12562
|
/**
|
|
12206
12563
|
* Takes a function and returns a new one that will always have a particular context.
|
|
12207
12564
|
* @param funсtion The function whose context will be changed.
|
|
@@ -12332,13 +12689,26 @@ $( "#test" )
|
|
|
12332
12689
|
</html>
|
|
12333
12690
|
```
|
|
12334
12691
|
*/
|
|
12335
|
-
proxy<TContext,
|
|
12336
|
-
|
|
12337
|
-
|
|
12338
|
-
|
|
12339
|
-
|
|
12340
|
-
|
|
12341
|
-
|
|
12692
|
+
proxy<TContext, TReturn, A, B, C, T, U, V, W, X, Y, Z>(
|
|
12693
|
+
funсtion: (
|
|
12694
|
+
this: TContext,
|
|
12695
|
+
a: A,
|
|
12696
|
+
b: B,
|
|
12697
|
+
c: C,
|
|
12698
|
+
t: T,
|
|
12699
|
+
u: U,
|
|
12700
|
+
v: V,
|
|
12701
|
+
w: W,
|
|
12702
|
+
x: X,
|
|
12703
|
+
y: Y,
|
|
12704
|
+
z: Z,
|
|
12705
|
+
...args: any[]
|
|
12706
|
+
) => TReturn,
|
|
12707
|
+
context: TContext,
|
|
12708
|
+
a: A,
|
|
12709
|
+
b: B,
|
|
12710
|
+
c: C,
|
|
12711
|
+
): (t: T, u: U, v: V, w: W, x: X, y: Y, z: Z, ...args: any[]) => TReturn;
|
|
12342
12712
|
/**
|
|
12343
12713
|
* Takes a function and returns a new one that will always have a particular context.
|
|
12344
12714
|
* @param funсtion The function whose context will be changed.
|
|
@@ -12468,13 +12838,12 @@ $( "#test" )
|
|
|
12468
12838
|
</html>
|
|
12469
12839
|
```
|
|
12470
12840
|
*/
|
|
12471
|
-
proxy<TContext,
|
|
12472
|
-
TReturn,
|
|
12473
|
-
|
|
12474
|
-
|
|
12475
|
-
|
|
12476
|
-
|
|
12477
|
-
a: A, b: B): (t: T, u: U, v: V, w: W, x: X, y: Y, z: Z, ...args: any[]) => TReturn;
|
|
12841
|
+
proxy<TContext, TReturn, A, B, T, U, V, W, X, Y, Z>(
|
|
12842
|
+
funсtion: (this: TContext, a: A, b: B, t: T, u: U, v: V, w: W, x: X, y: Y, z: Z, ...args: any[]) => TReturn,
|
|
12843
|
+
context: TContext,
|
|
12844
|
+
a: A,
|
|
12845
|
+
b: B,
|
|
12846
|
+
): (t: T, u: U, v: V, w: W, x: X, y: Y, z: Z, ...args: any[]) => TReturn;
|
|
12478
12847
|
/**
|
|
12479
12848
|
* Takes a function and returns a new one that will always have a particular context.
|
|
12480
12849
|
* @param funсtion The function whose context will be changed.
|
|
@@ -12603,13 +12972,11 @@ $( "#test" )
|
|
|
12603
12972
|
</html>
|
|
12604
12973
|
```
|
|
12605
12974
|
*/
|
|
12606
|
-
proxy<TContext,
|
|
12607
|
-
TReturn,
|
|
12608
|
-
|
|
12609
|
-
|
|
12610
|
-
|
|
12611
|
-
context: TContext,
|
|
12612
|
-
a: A): (t: T, u: U, v: V, w: W, x: X, y: Y, z: Z, ...args: any[]) => TReturn;
|
|
12975
|
+
proxy<TContext, TReturn, A, T, U, V, W, X, Y, Z>(
|
|
12976
|
+
funсtion: (this: TContext, a: A, t: T, u: U, v: V, w: W, x: X, y: Y, z: Z, ...args: any[]) => TReturn,
|
|
12977
|
+
context: TContext,
|
|
12978
|
+
a: A,
|
|
12979
|
+
): (t: T, u: U, v: V, w: W, x: X, y: Y, z: Z, ...args: any[]) => TReturn;
|
|
12613
12980
|
/**
|
|
12614
12981
|
* Takes a function and returns a new one that will always have a particular context.
|
|
12615
12982
|
* @param funсtion The function whose context will be changed.
|
|
@@ -12737,10 +13104,10 @@ $( "#test" )
|
|
|
12737
13104
|
</html>
|
|
12738
13105
|
```
|
|
12739
13106
|
*/
|
|
12740
|
-
proxy<TContext,
|
|
12741
|
-
TReturn,
|
|
12742
|
-
|
|
12743
|
-
|
|
13107
|
+
proxy<TContext, TReturn, T, U, V, W, X, Y, Z>(
|
|
13108
|
+
funсtion: (this: TContext, t: T, u: U, v: V, w: W, x: X, y: Y, z: Z, ...args: any[]) => TReturn,
|
|
13109
|
+
context: TContext,
|
|
13110
|
+
): (t: T, u: U, v: V, w: W, x: X, y: Y, z: Z, ...args: any[]) => TReturn;
|
|
12744
13111
|
|
|
12745
13112
|
// #endregion
|
|
12746
13113
|
|
|
@@ -12877,10 +13244,11 @@ $( "#test" )
|
|
|
12877
13244
|
</html>
|
|
12878
13245
|
```
|
|
12879
13246
|
*/
|
|
12880
|
-
proxy<TContext,
|
|
12881
|
-
|
|
12882
|
-
|
|
12883
|
-
|
|
13247
|
+
proxy<TContext, TReturn>(
|
|
13248
|
+
funсtion: (this: TContext, ...args: any[]) => TReturn,
|
|
13249
|
+
context: TContext,
|
|
13250
|
+
...additionalArguments: any[]
|
|
13251
|
+
): (...args: any[]) => TReturn;
|
|
12884
13252
|
|
|
12885
13253
|
// #endregion
|
|
12886
13254
|
|
|
@@ -12927,9 +13295,7 @@ $( "#test" ).on( "click", jQuery.proxy( obj, "test" ) );
|
|
|
12927
13295
|
</html>
|
|
12928
13296
|
```
|
|
12929
13297
|
*/
|
|
12930
|
-
proxy<TContext>(context: TContext,
|
|
12931
|
-
name: keyof TContext,
|
|
12932
|
-
...additionalArguments: any[]): (...args: any[]) => any;
|
|
13298
|
+
proxy<TContext>(context: TContext, name: keyof TContext, ...additionalArguments: any[]): (...args: any[]) => any;
|
|
12933
13299
|
|
|
12934
13300
|
// #endregion
|
|
12935
13301
|
|
|
@@ -13110,7 +13476,11 @@ $( "#stop" ).click(function() {
|
|
|
13110
13476
|
</html>
|
|
13111
13477
|
```
|
|
13112
13478
|
*/
|
|
13113
|
-
queue<T extends Element>(
|
|
13479
|
+
queue<T extends Element>(
|
|
13480
|
+
element: T,
|
|
13481
|
+
queueName?: string,
|
|
13482
|
+
newQueue?: JQuery.TypeOrArray<JQuery.QueueFunction<T>>,
|
|
13483
|
+
): JQuery.Queue<T>;
|
|
13114
13484
|
/**
|
|
13115
13485
|
* Handles errors thrown synchronously in functions wrapped in jQuery().
|
|
13116
13486
|
* @param error An error thrown in the function wrapped in jQuery().
|
|
@@ -13179,7 +13549,11 @@ $( "span:eq(3)" ).text( "" + jQuery.data( div, "test2" ) );
|
|
|
13179
13549
|
* @see \`{@link https://api.jquery.com/jQuery.speed/ }\`
|
|
13180
13550
|
* @since 1.1
|
|
13181
13551
|
*/
|
|
13182
|
-
speed<TElement extends Element = HTMLElement>(
|
|
13552
|
+
speed<TElement extends Element = HTMLElement>(
|
|
13553
|
+
duration: JQuery.Duration,
|
|
13554
|
+
easing: string,
|
|
13555
|
+
complete: (this: TElement) => void,
|
|
13556
|
+
): JQuery.EffectsOptions<TElement>;
|
|
13183
13557
|
/**
|
|
13184
13558
|
* Creates an object containing a set of properties ready to be used in the definition of custom animations.
|
|
13185
13559
|
* @param duration A string or number determining how long the animation will run.
|
|
@@ -13191,8 +13565,10 @@ $( "span:eq(3)" ).text( "" + jQuery.data( div, "test2" ) );
|
|
|
13191
13565
|
* @since 1.0
|
|
13192
13566
|
* @since 1.1
|
|
13193
13567
|
*/
|
|
13194
|
-
speed<TElement extends Element = HTMLElement>(
|
|
13195
|
-
|
|
13568
|
+
speed<TElement extends Element = HTMLElement>(
|
|
13569
|
+
duration: JQuery.Duration,
|
|
13570
|
+
easing_complete: string | ((this: TElement) => void),
|
|
13571
|
+
): JQuery.EffectsOptions<TElement>;
|
|
13196
13572
|
/**
|
|
13197
13573
|
* Creates an object containing a set of properties ready to be used in the definition of custom animations.
|
|
13198
13574
|
* @param duration_complete_settings _@param_ `duration_complete_settings`
|
|
@@ -13204,7 +13580,9 @@ $( "span:eq(3)" ).text( "" + jQuery.data( div, "test2" ) );
|
|
|
13204
13580
|
* @since 1.0
|
|
13205
13581
|
* @since 1.1
|
|
13206
13582
|
*/
|
|
13207
|
-
speed<TElement extends Element = HTMLElement>(
|
|
13583
|
+
speed<TElement extends Element = HTMLElement>(
|
|
13584
|
+
duration_complete_settings?: JQuery.Duration | ((this: TElement) => void) | JQuery.SpeedSettings<TElement>,
|
|
13585
|
+
): JQuery.EffectsOptions<TElement>;
|
|
13208
13586
|
/**
|
|
13209
13587
|
* Remove the whitespace from the beginning and end of a string.
|
|
13210
13588
|
* @param str The string to trim.
|
|
@@ -13271,7 +13649,21 @@ $( "b" ).append( "" + jQuery.type( /test/ ) );
|
|
|
13271
13649
|
</html>
|
|
13272
13650
|
```
|
|
13273
13651
|
*/
|
|
13274
|
-
type(
|
|
13652
|
+
type(
|
|
13653
|
+
obj: any,
|
|
13654
|
+
):
|
|
13655
|
+
| "array"
|
|
13656
|
+
| "boolean"
|
|
13657
|
+
| "date"
|
|
13658
|
+
| "error"
|
|
13659
|
+
| "function"
|
|
13660
|
+
| "null"
|
|
13661
|
+
| "number"
|
|
13662
|
+
| "object"
|
|
13663
|
+
| "regexp"
|
|
13664
|
+
| "string"
|
|
13665
|
+
| "symbol"
|
|
13666
|
+
| "undefined";
|
|
13275
13667
|
/**
|
|
13276
13668
|
* Sorts an array of DOM elements, in place, with the duplicates removed. Note that this only works on arrays of DOM elements, not strings or numbers.
|
|
13277
13669
|
* @param array The Array of DOM elements.
|
|
@@ -13391,15 +13783,21 @@ $.when( $.ajax( "/page1.php" ), $.ajax( "/page2.php" ) )
|
|
|
13391
13783
|
.then( myFunc, myFailure );
|
|
13392
13784
|
```
|
|
13393
13785
|
*/
|
|
13394
|
-
when<TR1, UR1, VR1,
|
|
13395
|
-
|
|
13396
|
-
|
|
13397
|
-
|
|
13398
|
-
deferredV: JQuery.Promise<VR1, VJ1> | JQuery.Thenable<VR1> | VR1,
|
|
13786
|
+
when<TR1, UR1, VR1, TJ1 = any, UJ1 = any, VJ1 = any>(
|
|
13787
|
+
deferredT: JQuery.Promise<TR1, TJ1> | JQuery.Thenable<TR1> | TR1,
|
|
13788
|
+
deferredU: JQuery.Promise<UR1, UJ1> | JQuery.Thenable<UR1> | UR1,
|
|
13789
|
+
deferredV: JQuery.Promise<VR1, VJ1> | JQuery.Thenable<VR1> | VR1,
|
|
13399
13790
|
): JQuery.Promise3<
|
|
13400
|
-
TR1,
|
|
13401
|
-
|
|
13402
|
-
|
|
13791
|
+
TR1,
|
|
13792
|
+
TJ1,
|
|
13793
|
+
never,
|
|
13794
|
+
UR1,
|
|
13795
|
+
UJ1,
|
|
13796
|
+
never,
|
|
13797
|
+
VR1,
|
|
13798
|
+
VJ1,
|
|
13799
|
+
never
|
|
13800
|
+
>;
|
|
13403
13801
|
/**
|
|
13404
13802
|
* Provides a way to execute callback functions based on zero or more Thenable objects, usually Deferred objects that represent asynchronous events.
|
|
13405
13803
|
* @see \`{@link https://api.jquery.com/jQuery.when/ }\`
|
|
@@ -13421,13 +13819,17 @@ $.when( $.ajax( "/page1.php" ), $.ajax( "/page2.php" ) )
|
|
|
13421
13819
|
.then( myFunc, myFailure );
|
|
13422
13820
|
```
|
|
13423
13821
|
*/
|
|
13424
|
-
when<TR1, UR1,
|
|
13425
|
-
|
|
13426
|
-
|
|
13427
|
-
deferredU: JQuery.Promise<UR1, UJ1> | JQuery.Thenable<UR1> | UR1,
|
|
13822
|
+
when<TR1, UR1, TJ1 = any, UJ1 = any>(
|
|
13823
|
+
deferredT: JQuery.Promise<TR1, TJ1> | JQuery.Thenable<TR1> | TR1,
|
|
13824
|
+
deferredU: JQuery.Promise<UR1, UJ1> | JQuery.Thenable<UR1> | UR1,
|
|
13428
13825
|
): JQuery.Promise2<
|
|
13429
|
-
TR1,
|
|
13430
|
-
|
|
13826
|
+
TR1,
|
|
13827
|
+
TJ1,
|
|
13828
|
+
never,
|
|
13829
|
+
UR1,
|
|
13830
|
+
UJ1,
|
|
13831
|
+
never
|
|
13832
|
+
>;
|
|
13431
13833
|
/**
|
|
13432
13834
|
* Provides a way to execute callback functions based on zero or more Thenable objects, usually Deferred objects that represent asynchronous events.
|
|
13433
13835
|
* @see \`{@link https://api.jquery.com/jQuery.when/ }\`
|
|
@@ -13449,15 +13851,21 @@ $.when( $.ajax( "/page1.php" ), $.ajax( "/page2.php" ) )
|
|
|
13449
13851
|
.then( myFunc, myFailure );
|
|
13450
13852
|
```
|
|
13451
13853
|
*/
|
|
13452
|
-
when<TR1, TJ1,
|
|
13453
|
-
|
|
13454
|
-
|
|
13455
|
-
|
|
13456
|
-
JQuery.Promise2<TR1, TJ1, any, TR2, TJ2, any>
|
|
13854
|
+
when<TR1, TJ1, TR2, TJ2, TR3 = never, TJ3 = never>(
|
|
13855
|
+
deferredT:
|
|
13856
|
+
| JQuery.Promise3<TR1, TJ1, any, TR2, TJ2, any, TR3, TJ3, any>
|
|
13857
|
+
| JQuery.Promise2<TR1, TJ1, any, TR2, TJ2, any>,
|
|
13457
13858
|
): JQuery.Promise3<
|
|
13458
|
-
TR1,
|
|
13459
|
-
|
|
13460
|
-
|
|
13859
|
+
TR1,
|
|
13860
|
+
TJ1,
|
|
13861
|
+
never,
|
|
13862
|
+
TR2,
|
|
13863
|
+
TJ2,
|
|
13864
|
+
never,
|
|
13865
|
+
TR3,
|
|
13866
|
+
TJ3,
|
|
13867
|
+
never
|
|
13868
|
+
>;
|
|
13461
13869
|
/**
|
|
13462
13870
|
* Provides a way to execute callback functions based on zero or more Thenable objects, usually Deferred objects that represent asynchronous events.
|
|
13463
13871
|
* @see \`{@link https://api.jquery.com/jQuery.when/ }\`
|
|
@@ -13479,7 +13887,9 @@ $.when( $.ajax( "/page1.php" ), $.ajax( "/page2.php" ) )
|
|
|
13479
13887
|
.then( myFunc, myFailure );
|
|
13480
13888
|
```
|
|
13481
13889
|
*/
|
|
13482
|
-
when<TR1, TJ1 = any>(
|
|
13890
|
+
when<TR1, TJ1 = any>(
|
|
13891
|
+
deferred: JQuery.Promise<TR1, TJ1> | JQuery.Thenable<TR1> | TR1,
|
|
13892
|
+
): JQuery.Promise<TR1, TJ1, never>;
|
|
13483
13893
|
/**
|
|
13484
13894
|
* Provides a way to execute callback functions based on zero or more Thenable objects, usually Deferred objects that represent asynchronous events.
|
|
13485
13895
|
* @param deferreds Zero or more Thenable objects.
|
|
@@ -13502,7 +13912,9 @@ $.when( $.ajax( "/page1.php" ), $.ajax( "/page2.php" ) )
|
|
|
13502
13912
|
.then( myFunc, myFailure );
|
|
13503
13913
|
```
|
|
13504
13914
|
*/
|
|
13505
|
-
when<TR1 = never, TJ1 = never>(
|
|
13915
|
+
when<TR1 = never, TJ1 = never>(
|
|
13916
|
+
...deferreds: Array<JQuery.Promise<TR1, TJ1> | JQuery.Thenable<TR1> | TR1>
|
|
13917
|
+
): JQuery.Promise<TR1, TJ1, never>;
|
|
13506
13918
|
/**
|
|
13507
13919
|
* Provides a way to execute callback functions based on zero or more Thenable objects, usually Deferred objects that represent asynchronous events.
|
|
13508
13920
|
* @param deferreds Zero or more Thenable objects.
|