implicit final class SaferStorageEvent extends AnyVal
- See also
https://html.spec.whatwg.org/multipage/webstorage.html#the-storageevent-interface
- Alphabetic
- By Inheritance
- SaferStorageEvent
- AnyVal
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new SaferStorageEvent(value: raw.StorageEvent)
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- Any
-
final
def
##(): Int
- Definition Classes
- Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
key: Option[String]
Represents the key changed.
Represents the key changed. The key attribute is null when the change is caused by the storage clear() method. Read only.
MDN
-
def
newValue: Option[Any]
The new value of the key.
The new value of the key. The newValue is null when the change has been invoked by storage clear() method or the key has been removed from the storage. Read only.
MDN
-
def
oldValue: Option[Any]
The original value of the key.
The original value of the key. The oldValue is null when the change has been invoked by storage clear() method or the key has been newly added and therefor doesn't have any previous value. Read only.
MDN
-
def
storageArea: Option[raw.Storage]
Represents the Storage object that was affected.
Represents the Storage object that was affected. Read only.
MDN
-
def
toString(): String
- Definition Classes
- Any
- val value: raw.StorageEvent