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>Actions

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

Represents the actions available to interact with the map state.

Type Parameters

K
  • The type of keys in the map.
V
  • The type of values in the map.

Properties

set: (key: K, value: V) => void
setAll: (entries: MapOrEntries<K, V>) => void
remove: (key: K) => void
reset: Map<K, V>["clear"]