Editor API Reference - v1.1.4
    Preparing search index...

    Class LocalStorage

    Wrapper around native local storage

    Index

    Methods

    Methods

    • Gets a key from localStorage

      Parameters

      • key: string

        The key

      Returns string | object

      The value

    • Checks if key exists in local storage

      Parameters

      • key: string

        The key

      Returns boolean

      True or false

    • Stores a key-value to localStorage

      Parameters

      • key: string

        The key

      • value: string | object

        The value

      Returns void

    • Removes a key from localStorage

      Parameters

      • key: string

        The key

      Returns void