Any list-like structure.
Element or value type
Index or key type for keyed collections
Represents the most common collection and iterable types in JavaScript. Useful for APIs that accept any kind of value collection.
type NumList = ListLike< number >; Copy
type NumList = ListLike< number >;
Any list-like structure.