Interface StorageEventInit
interface StorageEventInit {
bubbles?: boolean;
cancelable?: boolean;
composed?: boolean;
key?: string | null;
newValue?: string | null;
oldValue?: string | null;
storageArea?: Storage | null;
url?: string;
}
bubbles?: boolean;
cancelable?: boolean;
composed?: boolean;
key?: string | null;
newValue?: string | null;
oldValue?: string | null;
storageArea?: Storage | null;
url?: string;
}
Hierarchy
- EventInit
- StorageEventInit (View Summary)