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

Properties

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