Last active
May 2, 2018 12:48
-
-
Save tlaitinen/3278101d644ea7d23b2b5527189b198b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| declare module 'serverless-http' { | |
| import {Express} from 'express'; | |
| type Handler = (input:any) => any; | |
| function mkHandler(app:Express):Handler; | |
| export = mkHandler; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment