aboutsummaryrefslogtreecommitdiff
path: root/test/tests/taler.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-09-12 20:25:56 +0200
committerFlorian Dold <florian.dold@gmail.com>2016-09-12 20:25:56 +0200
commit885285734733b71c88dfb0da513988eb8678aa14 (patch)
treedcaa19022de33210a97266fcb7a91055ea8e42c7 /test/tests/taler.ts
parente3cc9c59bcc36eee8c3234574cfdfda3f5eea658 (diff)
downloadwallet-core-885285734733b71c88dfb0da513988eb8678aa14.tar.xz
fix compiler warnings
Diffstat (limited to 'test/tests/taler.ts')
-rw-r--r--test/tests/taler.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/tests/taler.ts b/test/tests/taler.ts
index 941e8284d..0ffb37329 100644
--- a/test/tests/taler.ts
+++ b/test/tests/taler.ts
@@ -1,9 +1,9 @@
import * as Emsc from '../../lib/wallet/emscriptif';
-declare var HttpMockLib;
+declare var HttpMockLib: any;
-export function declareTests(assert, context, it) {
+export function declareTests(assert: any, context: any, it: any) {
it("calls native emscripten code", function() {
let x = new Emsc.Amount({value: 42, fraction: 42, currency: "EUR"});