summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/operations/state.ts
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2021-06-02 10:58:37 -0300
committerSebastian <sebasjm@gmail.com>2021-06-02 11:02:23 -0300
commit5e96bb487fb5e700aa3078558a6cddd146cb7d6e (patch)
tree790230996d71cc716bec12f620caf21bcd0dd861 /packages/taler-wallet-core/src/operations/state.ts
parent9f09f5a1a5f0028bba1f76b4c8740734102cc0cf (diff)
downloadwallet-core-dev/sebasjm/imports-change.tar.gz
wallet-core-dev/sebasjm/imports-change.tar.bz2
wallet-core-dev/sebasjm/imports-change.zip
remove references to the index.ts in the importdev/sebasjm/imports-change
Diffstat (limited to 'packages/taler-wallet-core/src/operations/state.ts')
-rw-r--r--packages/taler-wallet-core/src/operations/state.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/taler-wallet-core/src/operations/state.ts b/packages/taler-wallet-core/src/operations/state.ts
index 752a57ffb..39ba71b1e 100644
--- a/packages/taler-wallet-core/src/operations/state.ts
+++ b/packages/taler-wallet-core/src/operations/state.ts
@@ -18,11 +18,14 @@
* Imports.
*/
import { WalletNotification, BalancesResponse } from "@gnu-taler/taler-util";
+import { CryptoApi, CryptoWorkerFactory } from "../crypto/workers/cryptoApi.js";
import { Stores } from "../db.js";
-import { Logger, CryptoApi, OpenedPromise, Database, CryptoWorkerFactory, openPromise } from "../index.js";
import { PendingOperationsResponse } from "../pending-types.js";
import { AsyncOpMemoMap, AsyncOpMemoSingle } from "../util/asyncMemo.js";
import { HttpRequestLibrary } from "../util/http";
+import { Logger } from "../util/logging.js";
+import { OpenedPromise, openPromise } from "../util/promiseUtils.js";
+import { Database } from "../util/query.js";
type NotificationListener = (n: WalletNotification) => void;