diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-10-18 01:16:31 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-10-18 01:16:31 +0200 |
commit | 89c3c2d58d1a7102a10edfb716cbc7434d0bc117 (patch) | |
tree | e5a81fbc118a7ae95e92dea2b653d26301c57bc1 /lib/wallet/db.ts | |
parent | 78ea2ba5b110bc36d8625a1dd524257906788552 (diff) |
make db layer more type safe
Diffstat (limited to 'lib/wallet/db.ts')
-rw-r--r-- | lib/wallet/db.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/wallet/db.ts b/lib/wallet/db.ts index 9133330a2..a78abc26a 100644 --- a/lib/wallet/db.ts +++ b/lib/wallet/db.ts @@ -15,6 +15,7 @@ */ "use strict"; +import {IExchangeInfo} from "./types"; /** * Declarations and helpers for @@ -27,6 +28,7 @@ const DB_NAME = "taler"; const DB_VERSION = 10; + /** * Return a promise that resolves * to the taler wallet db. |