Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/windmill/node_modules/evt/lib/types/lib.dom.d.ts>StorageEvent

Windmill deno client (separated from the main repo because most of the code is auto-generated from the openapi and not worth committing)
Go to Latest
interface StorageEvent
implements Event
import { type StorageEvent } from "https://deno.land/x/windmill@v1.298.0/node_modules/evt/lib/types/lib.dom.d.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

readonly
key: string | null

Returns the key of the storage item being changed.

readonly
newValue: string | null

Returns the new value of the key of the storage item whose value is being changed.

readonly
oldValue: string | null

Returns the old value of the key of the storage item whose value is being changed.

readonly
storageArea: Storage | null

Returns the Storage object that was affected.

readonly
url: string

Returns the URL of the document whose storage item changed.