Skip to main content
Module

x/rimbu/collection-types/map-custom/index.ts>KeyValue

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Go to Latest
interface KeyValue
Re-export
import { type KeyValue } from "https://deno.land/x/rimbu@0.13.1/collection-types/map-custom/index.ts";

A higher-kind utility type providing access to a key type K and value type V.

Type Parameters

optional
K = unknown
optional
V = unknown

Properties

readonly
_K: K

The key type.

readonly
_V: V

The value type.