Firebase计划功能-无法部署

时间:2019-09-20 06:52:10

标签: firebase google-cloud-functions

我的代码:

exports.scheduledFunction = functions.pubsub.schedule('every 5 minutes').onRun((context) => { console.log('This will be run every 5 minutes!'); }); 

要部署,我运行:

firebase deploy --only functions:scheduledFunction 

尝试部署计划功能时遇到此问题

  

src / index.ts(490,18):错误TS2339:类型'typeof'/ functions / node_modules / firebase-functions ...'上不存在属性'schedule'

1 个答案:

答案 0 :(得分:1)

version 2.3 of the firebase-functions library中添加了pubsub.schedule()触发器。您最有可能使用的版本早于该版本。