Skip to content

Commit

Permalink
Make IMiddy extend Handler (#119)
Browse files Browse the repository at this point in the history
* Make IMiddy extend Handler

* Version bump
  • Loading branch information
rafaelcorreiapoli authored and lmammino committed Feb 24, 2018
1 parent 69abc0e commit 9880fcb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "middy",
"version": "0.9.1",
"version": "0.9.2",
"description": "🛵 The stylish Node.js middleware engine for AWS Lambda",
"main": "src/index.js",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion typescript/middy.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ declare var middy: {
};

declare namespace middy {
interface IMiddy {
interface IMiddy extends Handler {
use: IMiddyUseFunction;
before: IMiddyMiddlewareFunction;
after: IMiddyMiddlewareFunction;
Expand Down

0 comments on commit 9880fcb

Please sign in to comment.