Merge pull request #17370 from poislagarde/patch-1

[body-parser] Fix typo in json options
This commit is contained in:
Nathan Shively-Sanders
2017-06-21 14:46:21 -07:00
committed by GitHub

View File

@@ -21,7 +21,7 @@ declare namespace bodyParser {
}
interface OptionsJson extends Options {
reviever?(key: string, value: any): any;
reviver?(key: string, value: any): any;
strict?: boolean;
}