徐总多门店
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

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