Files
midi-h5/uni_modules/UniDevTools/node_modules/licia/unique.d.ts

7 lines
116 B
TypeScript
Raw Normal View History

2025-08-11 11:51:38 +08:00
declare function unique(
arr: any[],
cmp?: (a: any, b: any) => boolean | number
): any[];
export = unique;