Fixed lint errors for alexa-sdk

This commit is contained in:
rbot
2017-11-23 17:44:33 +05:30
parent 5838284de2
commit 26bb67e8d7
2 changed files with 394 additions and 433 deletions

View File

@@ -8,13 +8,13 @@ const handler = (event: Alexa.RequestBody<Alexa.Request>, context: Alexa.Context
};
const handlers: Alexa.Handlers<Alexa.Request> = {
'LaunchRequest': function () {
'LaunchRequest': function() {
this.emit('SayHello');
},
'HelloWorldIntent': function () {
'HelloWorldIntent': function() {
this.emit('SayHello');
},
'SayHello': function () {
'SayHello': function() {
this.emit(':tell', 'Hello World!');
}
};

File diff suppressed because it is too large Load Diff