Utility type that returns the element type of an array type.
type Elements = (string | number)[];type Element = Unpack<Elements> // (string | number) Copy
type Elements = (string | number)[];type Element = Unpack<Elements> // (string | number)
Utility type that returns the element type of an array type.