我正在使用我的实用程序功能开发一个库,其中之一是:
/**
* Open spreadsheet by passing its link instead of its key
* @return {Spreadsheet} the spreadsheet object
* @param {string} link the link to the spreadsheet
*/
function openByLink(link) {
return SpreadsheetApp.openById(link.match(/key=([^&]*)/)[1]);
}
我的问题是:如何记录此函数返回类型,以便脚本编辑器自动完成我的函数返回值作为电子表格对象。就像openById
调用没有包含在我的方法中一样?