Skip to content

Commit

Permalink
fix ts type error
Browse files Browse the repository at this point in the history
  • Loading branch information
Carmine DiMascio committed Mar 15, 2020
1 parent 29dfb22 commit cc20b12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/framework/modded.express.mung.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ mung.headersAsync = function headersAsync(fn) {
};
};

mung.write = function write(fn, options = {}) {
mung.write = function write(fn, options: any = {}) {
return function(req, res, next) {
const original = res.write;
const mungError = options.mungError;
Expand Down

0 comments on commit cc20b12

Please sign in to comment.