Advertisement
Guest User

Untitled

a guest
Apr 17th, 2014
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. /**
  2. * The complete Triforce, or one or more components of the Triforce.
  3. * @typedef {Object} WishGranter~Triforce
  4. * @property {boolean} hasCourage - Indicates whether the Courage component is present.
  5. * @property {boolean} hasPower - Indicates whether the Power component is present.
  6. * @property {boolean} hasWisdom - Indicates whether the Wisdom component is present.
  7. */
  8.  
  9. /**
  10. * A class for granting wishes, powered by the Triforce.
  11. * @class
  12. * @param {...WishGranter~Triforce} triforce - One to three {@link WishGranter~Triforce} objects
  13. * containing all three components of the Triforce.
  14. */
  15. function WishGranter() {}
  16.  
  17. /**
  18. * @classdesc Not a real class but an interface. Etc...
  19. *
  20. * @name MessageQueueConnector
  21. * @class
  22. */
  23.  
  24. /**
  25. * This method does...
  26. *
  27. * @method
  28. * @name MessageQueueConnector#connectAndSubscribe
  29. * @param {string} whatever Whatever this is.
  30. * @returns {Object} Description of return value.
  31. * @throws {SomeException} blah.
  32. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement