File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1125,15 +1125,15 @@ interface Array<T> {
1125
1125
* Returns a string representation of an array. The elements are converted to string using their toLocalString methods.
1126
1126
*/
1127
1127
toLocaleString ( ) : string ;
1128
+ /**
1129
+ * Removes the last element from an array and returns it.
1130
+ */
1131
+ pop ( ) : T | undefined ;
1128
1132
/**
1129
1133
* Appends new elements to an array, and returns the new length of the array.
1130
1134
* @param items New elements of the Array.
1131
1135
*/
1132
1136
push ( ...items : T [ ] ) : number ;
1133
- /**
1134
- * Removes the last element from an array and returns it.
1135
- */
1136
- pop ( ) : T | undefined ;
1137
1137
/**
1138
1138
* Combines two or more arrays.
1139
1139
* @param items Additional items to add to the end of array1.
You can’t perform that action at this time.
0 commit comments