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 {
440440 copyTo ( array : T [ ] , arrayIndex : number ) : void
441441 }
442442
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+
443458
444459
445460
Original file line number Diff line number Diff line change @@ -440,6 +440,21 @@ declare module mx {
440440 copyTo ( array : T [ ] , arrayIndex : number ) : void
441441 }
442442
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+
443458
444459
445460
You can’t perform that action at this time.
0 commit comments