Help Angular by taking a 1 minute survey!Go to surveyHome

KeyValue

A key value pair. Usually used to represent the key value pairs from a Map or Object.

interface KeyValue<K, V> { key: K value: V }
      
      interface KeyValue<K, V> {
  key: K
  value: V
}
    

Properties

Property Description
key: K
value: V