diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-09-12 20:25:56 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-09-12 20:25:56 +0200 |
commit | 885285734733b71c88dfb0da513988eb8678aa14 (patch) | |
tree | dcaa19022de33210a97266fcb7a91055ea8e42c7 /test | |
parent | e3cc9c59bcc36eee8c3234574cfdfda3f5eea658 (diff) |
fix compiler warnings
Diffstat (limited to 'test')
-rw-r--r-- | test/tests/taler.ts | 4 |
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"}); |