paramtag.js 802 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /**
  2. * @param { String | Array<String>} targetName The name (or names) of what to find.
  3. */
  4. function find(targetName) {
  5. }
  6. /**
  7. * @param {function} callback
  8. */
  9. function bind(callback) {
  10. }
  11. /**
  12. * @param {function}
  13. */
  14. function unbind(callback) {
  15. }
  16. /**
  17. * @param id The id of the element.
  18. */
  19. function getElement(id) {
  20. }
  21. /**
  22. * @param ... Two or more elements.
  23. */
  24. function combine() {
  25. }
  26. /**
  27. * @param delimiter - What to split on.
  28. */
  29. function split(delimiter) {
  30. }
  31. /**
  32. * @param - If true make the commit atomic.
  33. */
  34. function commit(atomic) {
  35. }
  36. /**
  37. * @param [async=true] - whether to be asynchronous
  38. */
  39. function request(async) {
  40. }
  41. /** @class */
  42. function MySocket() {}
  43. /**
  44. * @param {string} - Hostname.
  45. * @param {number} - Port number.
  46. */
  47. MySocket.prototype.open = function(hostname, port) {};