Options
All
  • Public
  • Public/Protected
  • All
Menu

Class MemoryStorage<T>

TODO: !!! Are there descriptions from Storage interface in documentation?

Type parameters

  • T

Hierarchy

  • MemoryStorage

Implements

Index

Constructors

Accessors

  • get length(): number

Methods

  • clear(): void
  • getItem(key: string): null | T
  • Returns the current value associated with the given key, or null if the given key does not exist in the list associated with the object.

    Parameters

    • key: string

    Returns null | T

  • key(index: number): null | string
  • Returns the name of the nth key in the list, or null if n is greater than or equal to the number of key/value pairs in the object.

    Parameters

    • index: number

    Returns null | string

  • removeItem(key: string): void
  • Removes the key/value pair with the given key from the list associated with the object, if a key/value pair with the given key exists.

    Parameters

    • key: string

    Returns void

  • setItem(key: string, value: T): void
  • Sets the value of the pair identified by key to value, creating a new key/value pair if none existed for key previously.

    Parameters

    • key: string
    • value: T

    Returns void