interface StorageEvent
implements Event
import { type StorageEvent } from "https://deno.land/x/evt@v2.5.6/lib/types/lib.dom.ts";
A StorageEvent is sent to a window when a storage area it has access to is changed within the context of another document.
Properties
Returns the new value of the key of the storage item whose value is being changed.
Returns the old value of the key of the storage item whose value is being changed.
readonly
storageArea: Storage | nullReturns the Storage object that was affected.