You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -2074,6 +2090,7 @@ html[SO] type UList = raw.HTMLUListElement
2074
2090
html[SO] type Unknown = raw.HTMLUnknownElement
2075
2091
html[SO] type Video = raw.HTMLVideoElement
2076
2092
html[SO] def Media = raw.HTMLMediaElement
2093
+
idb[SO] @deprecated( "Removed. This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible. See https://developer.mozilla.org/en-US/docs/Web/API/IDBEnvironment", "1.2.0") type Environment = raw.IDBEnvironment
2077
2094
idb[SO] type Cursor = raw.IDBCursor
2078
2095
idb[SO] type CursorWithValue = raw.IDBCursorWithValue
@@ -2074,6 +2090,7 @@ html[SO] type UList = raw.HTMLUListElement
2074
2090
html[SO] type Unknown = raw.HTMLUnknownElement
2075
2091
html[SO] type Video = raw.HTMLVideoElement
2076
2092
html[SO] def Media = raw.HTMLMediaElement
2093
+
idb[SO] @deprecated( "Removed. This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible. See https://developer.mozilla.org/en-US/docs/Web/API/IDBEnvironment", "1.2.0") type Environment = raw.IDBEnvironment
2077
2094
idb[SO] type Cursor = raw.IDBCursor
2078
2095
idb[SO] type CursorWithValue = raw.IDBCursorWithValue
Copy file name to clipboardExpand all lines: src/main/scala/org/scalajs/dom/idb.scala
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -18,4 +18,8 @@ object idb {
18
18
typeTransaction= raw.IDBTransaction
19
19
@inline defTransaction= raw.IDBTransaction
20
20
typeVersionChangeEvent= raw.IDBVersionChangeEvent
21
+
@deprecated(
22
+
"Removed. This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible. See https://developer.mozilla.org/en-US/docs/Web/API/IDBEnvironment",
Copy file name to clipboardExpand all lines: src/main/scala/org/scalajs/dom/raw/Idb.scala
+23Lines changed: 23 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -797,3 +797,26 @@ class IDBRequest extends EventTarget {
797
797
*/
798
798
defresult: js.Any= js.native
799
799
}
800
+
801
+
/**
802
+
* The IDBEvironment interface of the IndexedDB API provides asynchronous access
803
+
* to a client-side database. It is implemented by window and Worker objects.
804
+
*
805
+
* MDN
806
+
*/
807
+
@deprecated(
808
+
"Removed. This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible. See https://developer.mozilla.org/en-US/docs/Web/API/IDBEnvironment",
809
+
"1.2.0")
810
+
@js.native
811
+
traitIDBEnvironmentextends js.Object {
812
+
813
+
/**
814
+
* an IDBRequest object that communicates back to the requesting application
815
+
* through events. This design means that any number of requests can be active on any
0 commit comments