countBy.d.ts 735 B

1234567891011121314151617181920212223
  1. /**
  2. * 集合分组统计,返回各组中对象的数量统计
  3. * @param list 对象
  4. * @param iterate 回调/属性
  5. * @param context 上下文
  6. */
  7. export declare function countBy<T, C>(list: T[], iterate: (this: C, item: T, index: number, list: T[]) => string | number, context?: C): { [key: string]: number };
  8. /**
  9. * 集合分组统计,返回各组中对象的数量统计
  10. * @param obj 对象
  11. * @param iterate 回调/属性
  12. * @param context 上下文
  13. */
  14. export declare function countBy<T, C>(obj: T, iterate: (this: C, item: any, key: string, obj: T) => string | number, context?: C): { [key: string]: number };
  15. declare module './ctor' {
  16. interface XEUtilsMethods {
  17. countBy: typeof countBy;
  18. }
  19. }
  20. export default countBy