我想在我的ES6項目中使用JSDoc,我返回地圖:Javascript + JsDoc:如何記錄新的ES6數據類型,如地圖?
/**
* Some documentation..
*
* @returns {undefined} <- This should be replaced
*/
function returningMap() {
const someMap = new Map();
someMap.set("key", {a, b, c});
return someMap;
}
我應該如何記錄這跟@returns
?
有沒有好的答案here。
@returns {Map}? – Thomas
我有一個幾乎相似的問題。 https://stackoverflow.com/questions/38309123/jsdoc-with-and-immutable-js-datastructures-in-annotations –