Skip to content

Commit

Permalink
fix(zoe): don't @typedef areRightsConserved
Browse files Browse the repository at this point in the history
This was unnecessary, and tickled a bug in Typescript's tsc that
crashed the compiler.
  • Loading branch information
michaelfig committed Jul 17, 2020
1 parent b4b5711 commit 281f7b1
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions packages/zoe/src/zoe.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,12 @@ import { makeTables } from './state';
*/

/**
* @typedef {import('@agoric/ertp/src/issuer').Amount} Amount
* @typedef {import('@agoric/ertp/src/issuer').Brand} Brand
* @typedef {import('@agoric/ertp/src/amountMath').AmountMath} AmountMath
* @typedef {import('@agoric/ertp/src/issuer').Payment} Payment
* @typedef {import('@agoric/ertp/src/issuer').Issuer} Issuer
* @typedef {import('@agoric/ertp/src/issuer').Purse} Purse
*
* @typedef {import('./rightsConservation').areRightsConserved} areRightsConserved
* @typedef {import('@agoric/ertp').Amount} Amount
* @typedef {import('@agoric/ertp').Brand} Brand
* @typedef {import('@agoric/ertp').AmountMath} AmountMath
* @typedef {import('@agoric/ertp').Payment} Payment
* @typedef {import('@agoric/ertp').Issuer} Issuer
* @typedef {import('@agoric/ertp').Purse} Purse
*
* @typedef {any} TODO Needs to be typed
* @typedef {string} Keyword
Expand Down

0 comments on commit 281f7b1

Please sign in to comment.