Skip to content

Commit 98621d0

Browse files
authored
fix(nestjs): Broaden nest.js type (#12076)
Let's see..
1 parent 257bcb0 commit 98621d0

File tree

1 file changed

+1
-1
lines changed
  • packages/node/src/integrations/tracing

1 file changed

+1
-1
lines changed

packages/node/src/integrations/tracing/nest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ interface NestJsErrorFilter {
2828
interface MinimalNestJsApp {
2929
useGlobalFilters: (arg0: NestJsErrorFilter) => void;
3030
useGlobalInterceptors: (interceptor: {
31-
intercept: (context: MinimalNestJsExecutionContext, next: { handle: () => void }) => void;
31+
intercept: (context: MinimalNestJsExecutionContext, next: { handle: () => any }) => any;
3232
}) => void;
3333
}
3434

0 commit comments

Comments
 (0)