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 (View Summary)
- EventInit
- StorageEventInit
Index
Properties
Was this helpful?