Is there a version for the guide in typescript? I ...
# help
d
Is there a version for the guide in typescript? I have issues to convert handler.js to typescript (as it can handle multiple different events)
t
This probably is more a typescript thing than an sst thing
You need to use something called a type union
EventTypeA | EventTypeB
Generally though I advise against having one handler do multiple things
d
Generally though I advise against having one handler do multiple things
The guide says the opposite. But I understand what you are trying to say. I will remove the handler.js from code base. Thanks