如何记录Apps脚本库以引用默认服务类型?

时间:2012-06-02 20:18:12

标签: google-apps-script

我正在使用我的实用程序函数开发一个库,其中一个就是:

/**
 * 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调用未包含在我的方法中一样?

1 个答案:

答案 0 :(得分:2)

不幸的是,对于函数的返回值,无论是在库中还是在同一个脚本中,完成都不起作用。我可以看到这有用,我建议在issue tracker上打开一个功能请求。