meyfa/group-items

View on GitHub
src/types.ts

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
/**
 * A type representing a grouping of items by a specific key.
 */
export interface GroupingEntry<K, V> {
  key: K
  items: V[]
}

export type Grouping<K, V> = Array<GroupingEntry<K, V>>