/** * Pushes the second argument to the first array argument * @example * ```ts * // [1, 2, 3, 4, 5] * type Case1 = Push<[1, 2, 3, 4], 5> * ``` */ export type Push = [...T, U];