aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/taler-wallet-cli/src/index.ts6
-rw-r--r--packages/taler-wallet-core/src/index.ts3
2 files changed, 5 insertions, 4 deletions
diff --git a/packages/taler-wallet-cli/src/index.ts b/packages/taler-wallet-cli/src/index.ts
index 63b969f18..695f5fd63 100644
--- a/packages/taler-wallet-cli/src/index.ts
+++ b/packages/taler-wallet-cli/src/index.ts
@@ -45,14 +45,14 @@ import {
NodeThreadCryptoWorkerFactory,
CryptoApi,
walletCoreDebugFlags,
- WalletCoreApiClient,
- WalletApiOperation,
handleCoreApiRequest,
runPending,
runUntilDone,
getClientFromWalletState,
+ WalletApiOperation,
+ WalletCoreApiClient,
+ InternalWalletState,
} from "@gnu-taler/taler-wallet-core";
-import { InternalWalletState } from "@gnu-taler/taler-wallet-core/src/operations/state";
// This module also serves as the entry point for the crypto
// thread worker, and thus must expose these two handlers.
diff --git a/packages/taler-wallet-core/src/index.ts b/packages/taler-wallet-core/src/index.ts
index 24109d9b8..995af438d 100644
--- a/packages/taler-wallet-core/src/index.ts
+++ b/packages/taler-wallet-core/src/index.ts
@@ -48,5 +48,6 @@ export * from "./crypto/talerCrypto.js";
export * from "./pending-types.js";
export * from "./util/debugFlags.js";
-
+export { InternalWalletState } from "./operations/state.js";
+export * from "./wallet-api-types.js";
export * from "./wallet.js";