[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-wallet-core] branch master updated: type annotation
From: |
gnunet |
Subject: |
[taler-wallet-core] branch master updated: type annotation |
Date: |
Fri, 29 Jan 2021 11:37:04 +0100 |
This is an automated email from the git hooks/post-receive script.
dold pushed a commit to branch master
in repository wallet-core.
The following commit(s) were added to refs/heads/master by this push:
new 4aded2bf type annotation
4aded2bf is described below
commit 4aded2bfefcaa6bb4a78dfac22bff8795e8d01c1
Author: Florian Dold <florian@dold.me>
AuthorDate: Fri Jan 29 11:36:44 2021 +0100
type annotation
---
packages/idb-bridge/src/MemoryBackend.test.ts | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/packages/idb-bridge/src/MemoryBackend.test.ts
b/packages/idb-bridge/src/MemoryBackend.test.ts
index 21325379..737b83d9 100644
--- a/packages/idb-bridge/src/MemoryBackend.test.ts
+++ b/packages/idb-bridge/src/MemoryBackend.test.ts
@@ -36,8 +36,8 @@ function promiseFromRequest(request: BridgeIDBRequest):
Promise<any> {
function promiseFromTransaction(
transaction: BridgeIDBTransaction,
-): Promise<any> {
- return new Promise((resolve, reject) => {
+): Promise<void> {
+ return new Promise<void>((resolve, reject) => {
transaction.oncomplete = () => {
resolve();
};
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [taler-wallet-core] branch master updated: type annotation,
gnunet <=