Skip to content

Instantly share code, notes, and snippets.

@tlaitinen
Last active May 2, 2018 12:48
Show Gist options
  • Select an option

  • Save tlaitinen/3278101d644ea7d23b2b5527189b198b to your computer and use it in GitHub Desktop.

Select an option

Save tlaitinen/3278101d644ea7d23b2b5527189b198b to your computer and use it in GitHub Desktop.
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