You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
549 B
17 lines
549 B
5 months ago
|
/**
|
||
|
* 数组去重
|
||
|
* @param list 数组
|
||
|
* @param iterate 回调/对象属性
|
||
|
* @param context 上下文
|
||
|
*/
|
||
|
export declare function uniq<T, C = any>(list: T[], iterate?: string | number | ((this: C, item: T, index: number, obj: T[]) => string | number), context?: C): T[];
|
||
|
export declare function uniq<C = any>(list: any, iterate?: string | number | ((this: C, item: any, index: number, obj: any) => string | number), context?: C): any[];
|
||
|
|
||
|
declare module './ctor' {
|
||
|
interface XEUtilsMethods {
|
||
|
uniq: typeof uniq;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default uniq
|