On this page

Interface StorageEventInit

interface StorageEventInit {
    bubbles?: boolean;
    cancelable?: boolean;
    composed?: boolean;
    key?: string | null;
    newValue?: string | null;
    oldValue?: string | null;
    storageArea?: Storage | null;
    url?: string;
}

Hierarchy (View Summary)

Index

Properties

bubbles?: boolean
cancelable?: boolean
composed?: boolean
key?: string | null
newValue?: string | null
oldValue?: string | null
storageArea?: Storage | null
url?: string
Was this helpful?
SDK JS
Reference
StorageEventInit