Interface StorageEventInit

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

    Properties

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