mirror of https://codeberg.org/pzp/pzp-goals.git
more JSDocs
This commit is contained in:
parent
59a6b9b11c
commit
2c31231a92
|
@ -91,6 +91,7 @@ module.exports = {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @public
|
||||||
* @param {string} msgID
|
* @param {string} msgID
|
||||||
* @returns {Goal | null}
|
* @returns {Goal | null}
|
||||||
*/
|
*/
|
||||||
|
@ -99,6 +100,7 @@ module.exports = {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @public
|
||||||
* @param {RecPresent} rec
|
* @param {RecPresent} rec
|
||||||
* @returns {Array<Goal>}
|
* @returns {Array<Goal>}
|
||||||
*/
|
*/
|
||||||
|
@ -119,6 +121,10 @@ module.exports = {
|
||||||
return arr
|
return arr
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @public
|
||||||
|
* @returns {IterableIterator<Goal>}
|
||||||
|
*/
|
||||||
function list() {
|
function list() {
|
||||||
return goals.values()
|
return goals.values()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue