UNPKG

130 BTypeScriptView Raw
1/**
2 * 计算数组的最大值
3 * @param arr 数组
4 * @return 最大值
5 */
6export default function max(arr: number[]): number;