diff --git a/src/lib/core.d.ts b/src/lib/core.d.ts index dbd4d37ef966d..05da0e8057a85 100644 --- a/src/lib/core.d.ts +++ b/src/lib/core.d.ts @@ -1011,12 +1011,7 @@ interface Array { * Combines two or more arrays. * @param items Additional items to add to the end of array1. */ - concat(...items: U[]): T[]; - /** - * Combines two or more arrays. - * @param items Additional items to add to the end of array1. - */ - concat(...items: T[]): T[]; + concat(...items: (T | T[])[]): T[]; /** * Adds all the elements of an array separated by the specified separator string. * @param separator A string used to separate one element of an array from the next in the resulting String. If omitted, the array elements are separated with a comma.