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.
119
-
*/
111
+
/** Returns an iterator allowing to go through all key/value pairs contained in this object. */
120
112
entries(): IterableIterator<[string,string]>;
121
-
/**
122
-
* Returns an iterator allowing to go through all keys of the key/value pairs contained in this object.
123
-
*/
113
+
/** Returns an iterator allowing to go through all keys of the key/value pairs contained in this object. */
124
114
keys(): IterableIterator<string>;
125
-
/**
126
-
* Returns an iterator allowing to go through all values of the key/value pairs contained in this object.
127
-
*/
115
+
/** Returns an iterator allowing to go through all values of the key/value pairs contained in this object. */
128
116
values(): IterableIterator<string>;
129
117
}
130
118
131
119
interfaceIDBDatabase{
132
-
/**
133
-
* 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.
134
-
*/
120
+
/** 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