* Appends new elements to an array, and returns the new length of the array. * @param items New elements of the Array.
(...items: T[])
| 1008 | * @param items New elements of the Array. |
| 1009 | */ |
| 1010 | push(...items: T[]): number; |
| 1011 | /** |
| 1012 | * Reverses the elements in an Array. |
| 1013 | */ |
no outgoing calls