Represents a key-value pair.

interface KeyValue<TKey, TValue> {
    Key: TKey;
    Value: TValue;
}

Type Parameters

  • TKey
  • TValue

Properties

Properties

Key: TKey

The key of the pair.

Value: TValue

The value associated with the key.