fix broken import

This commit is contained in:
Florian Dold 2020-08-26 22:12:32 +05:30
parent bebb3d7a9b
commit d1532f74b5
No known key found for this signature in database
GPG Key ID: D2E4F00F29D02A4B
4 changed files with 4 additions and 4 deletions

View File

@ -37,7 +37,7 @@ import {
BankApi,
BankAccessApi,
} from "./harness";
import { AmountString } from "taler-wallet-core/lib/types/talerTypes";
import { AmountString } from "taler-wallet-core";
import { FaultInjectedMerchantService } from "./faultInjection";
export interface SimpleTestEnvironment {

View File

@ -39,7 +39,7 @@ import {
FaultInjectionRequestContext,
FaultInjectionResponseContext,
} from "./faultInjection";
import { CoreApiResponse } from "taler-wallet-core/lib/walletCoreApiHandler";
import { CoreApiResponse } from "taler-wallet-core";
/**
* Run test for basic, bank-integrated withdrawal.

View File

@ -19,7 +19,7 @@
*/
import { runTest, GlobalTestState, BankApi } from "./harness";
import { createSimpleTestkudosEnvironment } from "./helpers";
import { CoreApiResponse } from "taler-wallet-core/lib/walletCoreApiHandler";
import { CoreApiResponse } from "taler-wallet-core";
import { codecForBalancesResponse } from "taler-wallet-core";
/**

View File

@ -25,7 +25,7 @@ import {
HttpResponse,
Headers,
} from "taler-wallet-core";
import { TalerErrorCode } from "taler-wallet-core/lib/TalerErrorCode";
import { TalerErrorCode } from "taler-wallet-core";
const logger = new Logger("browserHttpLib");