Skip to content

Type Alias: GroupItem<T, K>

GroupItem<T, K> = object

Defined in: operators/groupBy.ts:8

Represents a grouped item with its original value and the associated key.

Type Parameters

T

T = any

The type of the original value.

K

K = any

The type of the group key.

Properties

value

value: T

Defined in: operators/groupBy.ts:9


key

key: K

Defined in: operators/groupBy.ts:10

Released under the MIT License.