File tree Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -440,6 +440,21 @@ declare module mx {
440
440
copyTo ( array : T [ ] , arrayIndex : number ) : void
441
441
}
442
442
443
+ var Collection : {
444
+
445
+ /**
446
+ * Initializes a new instance of the Collection class that is empty.
447
+ */
448
+ new < T > ( ) : Collection < T >
449
+
450
+
451
+ /**
452
+ * Initializes a new instance of the Collection class that is wrapper around the specified Enumerable.
453
+ * @param value The Enumerable to wrap.
454
+ */
455
+ new < T > ( value : Enumerable < T > ) : Collection < T >
456
+ }
457
+
443
458
444
459
445
460
Original file line number Diff line number Diff line change @@ -440,6 +440,21 @@ declare module mx {
440
440
copyTo ( array : T [ ] , arrayIndex : number ) : void
441
441
}
442
442
443
+ var Collection : {
444
+
445
+ /**
446
+ * Initializes a new instance of the Collection class that is empty.
447
+ */
448
+ new < T > ( ) : Collection < T >
449
+
450
+
451
+ /**
452
+ * Initializes a new instance of the Collection class that is wrapper around the specified Enumerable.
453
+ * @param value The Enumerable to wrap.
454
+ */
455
+ new < T > ( value : Enumerable < T > ) : Collection < T >
456
+ }
457
+
443
458
444
459
445
460
You can’t perform that action at this time.
0 commit comments