mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-06-28 22:30:01 +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!');
|
||||
}
|
||||
};
|
||||
|
||||
821
types/alexa-sdk/index.d.ts
vendored
821
types/alexa-sdk/index.d.ts
vendored
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user