Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yjl68 committed Jan 16, 2024
1 parent d463cba commit 8799733
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion func/min.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @param array 数组
* @param iterate 回调/属性
*/
export declare function min<T, U>(list: T[], iterate: string | number | ((item: T, index: number, list: T[]) => U)): T | U;
export declare function min<T, U>(list: T[], iterate?: string | number | ((item: T, index: number, list: T[]) => U)): T | U;

declare module './ctor' {
interface XEUtilsMethods {
Expand Down

0 comments on commit 8799733

Please sign in to comment.