StorageEvent
A StorageEvent is sent to a window when a storage area it has access to is changed within the context of another document.
interface StorageEvent extends Event {
readonly key: string | null;
readonly newValue: string | null;
readonly oldValue: string | null;
readonly storageArea: Storage | null;
readonly url: string;
}var StorageEvent: {
prototype: StorageEvent;
new (type: string, eventInitDict?: StorageEventInit): StorageEvent;
};