W3cubDocs

/Angular

KeyValue

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

API

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

key

K

value

V

Super-powered by Google ©2010–2025.
Code licensed under an MIT-style License. Documentation licensed under CC BY 4.0.
https://angular.dev/api/common/KeyValue