Options
All
  • Public
  • Public/Protected
  • All
Menu

A KeyValueStorage which uses a JavaScript Map for internal storage.

Type parameters

  • TValue

Hierarchy

  • MemoryMapStorage

Implements

Index

Constructors

Properties

Methods

Constructors

Properties

data: Map<string, TValue>

Methods

  • delete(key: string): Promise<boolean>
  • entries(): AsyncIterableIterator<[string, TValue]>
  • get(key: string): Promise<undefined | TValue>
  • has(key: string): Promise<boolean>