fix: timer API should be exported from src/index

This commit is contained in:
Sebastian 2022-04-13 13:54:54 -03:00
parent 5044db6595
commit ec9aed276a
No known key found for this signature in database
GPG Key ID: BE4FF68352439FC1
3 changed files with 5 additions and 3 deletions

View File

@ -64,3 +64,5 @@ export {
nativeCrypto,
nullCrypto,
} from "./crypto/cryptoImplementation.js";
export * from "./util/timer.js";

View File

@ -17,8 +17,8 @@
/**
* Imports.
*/
import { Duration, Logger } from "@gnu-taler/taler-util";
import { TimerAPI, TimerGroup, TimerHandle } from "@gnu-taler/taler-wallet-core/src/util/timer";
import { Logger } from "@gnu-taler/taler-util";
import { TimerAPI, TimerHandle } from "@gnu-taler/taler-wallet-core";
const nullTimerHandle = {

View File

@ -40,7 +40,7 @@ import {
Wallet,
WalletStoresV1
} from "@gnu-taler/taler-wallet-core";
import { SetTimeoutTimerAPI, TimerGroup } from "@gnu-taler/taler-wallet-core/src/util/timer";
import { SetTimeoutTimerAPI } from "@gnu-taler/taler-wallet-core";
import { BrowserCryptoWorkerFactory } from "./browserCryptoWorkerFactory.js";
import { BrowserHttpLib } from "./browserHttpLib.js";
import { getReadRequestPermissions } from "./permissions.js";