This commit is contained in:
Florian Dold 2017-05-24 16:52:00 +02:00
parent 8f35362dad
commit 96ef591fb9
No known key found for this signature in database
GPG Key ID: D2E4F00F29D02A4B
2 changed files with 10 additions and 11 deletions

View File

@ -1,6 +1,6 @@
/* /*
This file is part of TALER This file is part of TALER
(C) 2015 GNUnet e.V. (C) 2015-2017 GNUnet e.V. and INRIA
TALER is free software; you can redistribute it and/or modify it under the TALER is free software; you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software terms of the GNU General Public License as published by the Free Software
@ -15,16 +15,17 @@
*/ */
/** /**
* Common types that are used by Taler. * Common types that are used by Taler and some helper functions
* to deal with them.
* *
* Note most types are defined in wallet.ts, types that * Note most types are defined in wallet.ts, types that
* are defined in types.ts are intended to be used by components * are defined in types.ts are intended to be used by components
* that do not depend on the whole wallet implementation (which depends on * that do not depend on the whole wallet implementation.
* emscripten).
*
* @author Florian Dold
*/ */
/**
* Imports.
*/
import { Checkable } from "./checkable"; import { Checkable } from "./checkable";
@Checkable.Class @Checkable.Class

View File

@ -17,10 +17,11 @@
/** /**
* High-level wallet operations that should be indepentent from the underlying * High-level wallet operations that should be indepentent from the underlying
* browser extension interface. * browser extension interface.
* @module Wallet
* @author Florian Dold
*/ */
/**
* Imports.
*/
import { import {
AmountJson, AmountJson,
Amounts, Amounts,
@ -74,7 +75,6 @@ import {
import {CryptoApi} from "./cryptoApi"; import {CryptoApi} from "./cryptoApi";
import URI = require("urijs"); import URI = require("urijs");
"use strict";
export interface CoinWithDenom { export interface CoinWithDenom {
coin: CoinRecord; coin: CoinRecord;
@ -118,8 +118,6 @@ export class KeysJson {
} }
@Checkable.Class @Checkable.Class
class WireFeesJson { class WireFeesJson {
@Checkable.Value(AmountJson) @Checkable.Value(AmountJson)