Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface StorageTransportApiMask

Promise-based variant of the standard Storage interface: https://html.spec.whatwg.org/multipage/webstorage.html#the-storage-interface

Hierarchy

  • StorageTransportApiMask

Implemented by

Index

Methods

clear

  • clear(): Promise<void>

getItem

  • getItem(key: string): Promise<undefined | null | string>

keys

  • keys(): Promise<string[]>

removeItem

  • removeItem(key: string): Promise<void>

setItem

  • setItem(key: string, value: string): Promise<void>

Generated using TypeDoc