From 2c31231a923b194db7283bd70413a08cdc8557fe Mon Sep 17 00:00:00 2001 From: Andre Staltz Date: Wed, 13 Sep 2023 15:52:14 +0300 Subject: [PATCH] more JSDocs --- lib/index.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/index.js b/lib/index.js index 9b25f93..8cafa66 100644 --- a/lib/index.js +++ b/lib/index.js @@ -91,6 +91,7 @@ module.exports = { } /** + * @public * @param {string} msgID * @returns {Goal | null} */ @@ -99,6 +100,7 @@ module.exports = { } /** + * @public * @param {RecPresent} rec * @returns {Array} */ @@ -119,6 +121,10 @@ module.exports = { return arr } + /** + * @public + * @returns {IterableIterator} + */ function list() { return goals.values() }