mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-13 05:20:25 +00:00
Fixed lint errors for alexa-sdk
This commit is contained in:
@@ -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!');
|
||||
}
|
||||
};
|
||||
|
||||
Vendored
+391
-430
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user