You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Two-element array whose first element is an accessor for retrieving an array element and whose second element is an accessor for setting an array element.
455
455
*/
456
-
accessors: [GetGeneric,SetGeneric];
456
+
accessors: [GetGeneric<T>,SetGeneric<T>];
457
457
}
458
458
459
459
/**
460
460
* Interface describing the output object for an indexed array-like object.
461
461
*/
462
-
interfaceIndexedAccessorObject{
462
+
interfaceIndexedAccessorObject<T>{
463
463
/**
464
464
* Boolean indicating whether the provided array-like object supports the get/set protocol (i.e., uses accessors for getting and setting elements).
* Two-element array whose first element is an accessor for retrieving an array element and whose second element is an accessor for setting an array element.
* Two-element array whose first element is an accessor for retrieving an array element and whose second element is an accessor for setting an array element.
* Two-element array whose first element is an accessor for retrieving an array element and whose second element is an accessor for setting an array element.
515
515
*/
516
-
accessors: [GetGeneric,SetGeneric];
516
+
accessors: [GetGeneric<T>,SetGeneric<T>];
517
517
}
518
518
519
519
/**
520
520
* Interface describing the output object for an indexed array-like object.
521
521
*/
522
-
interfaceIndexedAccessorObject{
522
+
interfaceIndexedAccessorObject<T>{
523
523
/**
524
524
* Reference to the original array-like object.
525
525
*/
526
-
data: Collection;
526
+
data: Collection<T>;
527
527
528
528
/**
529
529
* Boolean indicating whether the provided array-like object supports the get/set protocol (i.e., uses accessors for getting and setting elements).
* Two-element array whose first element is an accessor for retrieving an array element and whose second element is an accessor for setting an array element.
* Two-element array whose first element is an accessor for retrieving an array element and whose second element is an accessor for setting an array element.
0 commit comments