We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5da639a commit a685c59Copy full SHA for a685c59
src/store.ts
@@ -262,6 +262,8 @@ export class Store {
262
return iterator
263
}
264
265
+ // We can't use `async/await` here because that would make the signature
266
+ // incompatible with one of the overloads.
267
// eslint-disable-next-line promise/prefer-await-to-then
268
return collectIterator(iterator).then((items) =>
269
items.reduce(
src/store_list.ts
@@ -19,6 +19,8 @@ export function listStores(
19
20
21
22
23
24
25
return collectIterator(iterator).then((results) =>
26
results.reduce(
0 commit comments