Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/netzo/deps/usehooks-ts.ts>MapOrEntries

Full-stack Deno framework for building business web apps like internal tools, dashboards, admin panels and automated workflows.
Go to Latest
type alias MapOrEntries
import { type MapOrEntries } from "https://deno.land/x/netzo@0.5.66/deps/usehooks-ts.ts";

Represents the type for either a Map or an array of key-value pairs.

Type Parameters

K
  • The type of keys in the map.
V
  • The type of values in the map.
definition: Map<K, V> | [K, V][]