source: node_modules/es-toolkit/dist/compat/math/min.d.mts

Last change on this file was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago

Added visualizations

  • Property mode set to 100644
File size: 438 bytes
Line 
1/**
2 * Finds the element in an array that has the minimum value.
3 *
4 * @template T - The type of elements in the array.
5 * @param {ArrayLike<T> | null | undefined} [items] - The array of elements to search. Defaults to an empty array.
6 * @returns {T | undefined} - The element with the minimum value, or undefined if the array is empty.
7 */
8declare function min<T>(items: ArrayLike<T> | null | undefined): T | undefined;
9
10export { min };
Note: See TracBrowser for help on using the repository browser.