import { Collection } from './Collection.js'; /** * Values of an array or object * * @template T The collection to get the values from * @returns The values of the collection */ type Values = T extends Collection ? U : unknown; export type { Values };