Skip to content

Commit c449866

Browse files
author
Divyendu Singh
committed
fix for dist/index.d.ts
1 parent 21005c9 commit c449866

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export interface BodyParserJSONOptions {
1010
verify?: any,
1111
}
1212

13-
export const bodyParserGraphQL: () => RequestHandler = (options?: BodyParserJSONOptions) => (
13+
export const bodyParserGraphQL: (options?: BodyParserJSONOptions) => RequestHandler = (options?: BodyParserJSONOptions) => (
1414
req: Request,
1515
res: Response,
1616
next: NextFunction

0 commit comments

Comments
 (0)