add author

This commit is contained in:
Florian Dold 2016-03-01 19:49:09 +01:00
parent 51e5c43506
commit 9f1f2ce3d1
6 changed files with 15 additions and 4 deletions

View File

@ -15,6 +15,12 @@
*/ */
/**
* API to access the Taler crypto worker thread.
* @author Florian Dold
*/
import {PreCoin} from "./types"; import {PreCoin} from "./types";
import {Reserve} from "./types"; import {Reserve} from "./types";
import {Denomination} from "./types"; import {Denomination} from "./types";

View File

@ -14,7 +14,6 @@
TALER; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/> TALER; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/>
*/ */
import {Denomination} from "./types";
/** /**
* Web worker for crypto operations. * Web worker for crypto operations.
* @author Florian Dold * @author Florian Dold
@ -28,6 +27,7 @@ import create = chrome.alarms.create;
import {Offer} from "./wallet"; import {Offer} from "./wallet";
import {CoinWithDenom} from "./wallet"; import {CoinWithDenom} from "./wallet";
import {CoinPaySig} from "./types"; import {CoinPaySig} from "./types";
import {Denomination} from "./types";
export function main(worker: Worker) { export function main(worker: Worker) {

View File

@ -18,6 +18,8 @@
/** /**
* Smaller helper functions that do not depend * Smaller helper functions that do not depend
* on the emscripten machinery. * on the emscripten machinery.
*
* @author Florian Dold
*/ */
import {AmountJson} from "./types"; import {AmountJson} from "./types";

View File

@ -21,6 +21,8 @@
* 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 (which depends on
* emscripten). * emscripten).
*
* @author Florian Dold
*/ */
import {Checkable} from "./checkable"; import {Checkable} from "./checkable";

View File

@ -19,6 +19,7 @@ import {ReserveCreationInfo} from "./types";
/** /**
* Interface to the wallet through WebExtension messaging. * Interface to the wallet through WebExtension messaging.
* @author Florian Dold
*/ */