taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit 52b8785d95694e373d8efdb2aa1680e51172bd81
parent f0d5fe3ed64f3e608d1685179722a5a859eb0eff
Author: Florian Dold <florian@dold.me>
Date:   Tue, 15 Jun 2021 19:01:05 +0200

adjust imports

Diffstat:
Mpackages/taler-wallet-cli/src/index.ts | 6+++---
Mpackages/taler-wallet-core/src/index.ts | 3++-
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 @@ -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 @@ -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";