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

Hierarchy-Diagram

UML class diagram of StorageEventInit
Legend
icon for an interface in the UML class diagram interface
icon for a public property in the UML class diagram public property

Hierarchy (view full)

Properties

bubbles?: boolean
cancelable?: boolean
composed?: boolean
key?: null | string
newValue?: null | string
oldValue?: null | string
storageArea?: null | Storage
url?: string