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
* Returns an iterator allowing to go through all key/value pairs contained in this object.
99
-
*/
91
+
/** Returns an iterator allowing to go through all key/value pairs contained in this object. */
100
92
entries(): IterableIterator<[string,string]>;
101
-
/**
102
-
* Returns an iterator allowing to go through all keys of the key/value pairs contained in this object.
103
-
*/
93
+
/** Returns an iterator allowing to go through all keys of the key/value pairs contained in this object. */
104
94
keys(): IterableIterator<string>;
105
-
/**
106
-
* Returns an iterator allowing to go through all values of the key/value pairs contained in this object.
107
-
*/
95
+
/** Returns an iterator allowing to go through all values of the key/value pairs contained in this object. */
108
96
values(): IterableIterator<string>;
109
97
}
110
98
111
99
interfaceIDBDatabase{
112
-
/**
113
-
* Returns a new transaction with the given mode ("readonly" or "readwrite") and scope which can be a single object store name or an array of names.
114
-
*/
100
+
/** Returns a new transaction with the given mode ("readonly" or "readwrite") and scope which can be a single object store name or an array of names. */
0 commit comments