//#region src/math/max.d.ts /** * Computes the maximum value of array. * If array is empty or falsey, undefined is returned. * * @param numbers - The array of numbers to get the maximum from * @returns Returns the maximum value * * @example * max([1, 2, 3, 4]) // => 4 * max([]) // => undefined * max([1.5, 2.5, 3]) // => 3 */ declare function max(numbers: number[]): number | undefined; //#endregion export { max }; //# sourceMappingURL=max.d.cts.map