ask-sdk V2中类型Request的类型定义不完整

时间:2018-05-24 08:58:55

标签: typescript alexa alexa-skills-kit

我正在使用ask-sdk V2中提供的typescript定义。一切正常,但当我超过request.intent的意图时,它给了我一个错误" Property' intent'类型'请求'"中不存在。 我猜这里的类型定义不完整。

canHandle(handlerInput: Alexa.HandlerInput) {
 const { request } = handlerInput.requestEnvelope;

 return (
   request.type === intents.type.IntentRequest &&
   request.intent.name === intents.LocateBranch
 );
},

0 个答案:

没有答案