We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21005c9 commit c449866Copy full SHA for c449866
src/index.ts
@@ -10,7 +10,7 @@ export interface BodyParserJSONOptions {
10
verify?: any,
11
}
12
13
-export const bodyParserGraphQL: () => RequestHandler = (options?: BodyParserJSONOptions) => (
+export const bodyParserGraphQL: (options?: BodyParserJSONOptions) => RequestHandler = (options?: BodyParserJSONOptions) => (
14
req: Request,
15
res: Response,
16
next: NextFunction
0 commit comments