File tree 1 file changed +4
-4
lines changed
src/main/scala/org/scalajs/dom/raw
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -5976,15 +5976,15 @@ class StorageEvent extends Event {
5976
5976
*
5977
5977
* MDN
5978
5978
*/
5979
- def oldValue : js. Any = js.native
5979
+ def oldValue : String = js.native
5980
5980
5981
5981
/**
5982
5982
* The new value of the key. The newValue is null when the change has been invoked by
5983
5983
* storage clear() method or the key has been removed from the storage. Read only.
5984
5984
*
5985
5985
* MDN
5986
5986
*/
5987
- def newValue : js. Any = js.native
5987
+ def newValue : String = js.native
5988
5988
5989
5989
/**
5990
5990
* The URL of the document whose key changed. Read only.
@@ -6016,8 +6016,8 @@ class StorageEvent extends Event {
6016
6016
*/
6017
6017
@ deprecated(" Non-standard" , " forever" )
6018
6018
def initStorageEvent (typeArg : String , canBubbleArg : Boolean ,
6019
- cancelableArg : Boolean , keyArg : String , oldValueArg : js. Any ,
6020
- newValueArg : js. Any , urlArg : String ,
6019
+ cancelableArg : Boolean , keyArg : String , oldValueArg : String ,
6020
+ newValueArg : String , urlArg : String ,
6021
6021
storageAreaArg : Storage ): Unit = js.native
6022
6022
}
6023
6023
You can’t perform that action at this time.
0 commit comments