我正在使用我的实用程序函数开发一个库,其中一个就是:
/**
* 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]);
}
我的问题是:如何记录此函数返回类型,以便脚本编辑器自动完成函数的返回值作为Spreadsheet对象。就像openById
调用未包含在我的方法中一样?