Skip to content

Commit 167c4ec

Browse files
committed
fixed lint issue
1 parent 6ae3368 commit 167c4ec

File tree

1 file changed

+2
-1
lines changed
  • packages/event-handler/src/types

1 file changed

+2
-1
lines changed

packages/event-handler/src/types/rest.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,8 @@ type RestRouteOptions = {
7979
middleware?: Middleware[];
8080
};
8181

82-
type NextFunction = () => Promise<HandlerResponse | void>; // biome-ignore lint/suspicious/noConfusingVoidType: To ensure next function is awaited
82+
// biome-ignore lint/suspicious/noConfusingVoidType: To ensure next function is awaited
83+
type NextFunction = () => Promise<HandlerResponse | void>;
8384

8485
type Middleware = (args: {
8586
reqCtx: RequestContext;

0 commit comments

Comments
 (0)