我正在使用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
);
},