/** * @description A type that represents an array with a fixed number of elements of * specific types, followed by any number of additional elements of any type. */ export type ArrayLoose = [...T, ...unknown[]]