Documentation
    Preparing search index...

    A storage that can be used in chrome extensions

    Implements

    Index

    Constructors

    Methods

    • This event will fire if the storage was modified by someone else, eg. on another tab

      Parameters

      • _callback: (
            arg: {
                eventType: "storageCleared" | "entryModified";
                key: null | string;
                newValue: null | string;
                oldValue: null | string;
            },
        ) => {}

        The callback to be called when a storage value changes

      Returns Promise<void>