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

Hierarchy (view full)

Properties

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

Generated using TypeDoc