From 19222c3328f2debd89aadeebb104616e664fe51c Mon Sep 17 00:00:00 2001 From: MJ <49248157+Eranziel@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:04:41 -0600 Subject: [PATCH] Finish JSDoc --- forgevtt-module.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/forgevtt-module.js b/forgevtt-module.js index 31c4bf3..9b97fd8 100644 --- a/forgevtt-module.js +++ b/forgevtt-module.js @@ -101,8 +101,9 @@ class ForgeVTT { static hasFoundryGlobal = null; /** * The global isNewerVersion will be removed in v14, so we need a utility function to alias to whichever is available. - * @param {string} version - * @param {string} target + * @param {string} version The version to check + * @param {string} target The version to check against + * @returns {boolean} True when the version is newer than the target, false otherwise */ static isNewerVersion(version, target) { if (this.hasFoundryGlobal !== null) {