fix jsdoc

This commit is contained in:
zadam 2020-08-20 12:00:57 +02:00
parent 28ebca1268
commit 20b4b059e3

View file

@ -9,7 +9,7 @@ function getOption(name) {
}
/**
* @return {Promise<number>}
* @return {number}
*/
function getOptionInt(name) {
const val = getOption(name);
@ -24,7 +24,7 @@ function getOptionInt(name) {
}
/**
* @return {Promise<boolean>}
* @return {boolean}
*/
function getOptionBool(name) {
const val = getOption(name);