Skip to content

Commit

Permalink
fix(nestjs): Broaden nest.js type (#12076)
Browse files Browse the repository at this point in the history
Let's see..
  • Loading branch information
mydea committed May 16, 2024
1 parent 257bcb0 commit 98621d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/node/src/integrations/tracing/nest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ interface NestJsErrorFilter {
interface MinimalNestJsApp {
useGlobalFilters: (arg0: NestJsErrorFilter) => void;
useGlobalInterceptors: (interceptor: {
intercept: (context: MinimalNestJsExecutionContext, next: { handle: () => void }) => void;
intercept: (context: MinimalNestJsExecutionContext, next: { handle: () => any }) => any;
}) => void;
}

Expand Down

0 comments on commit 98621d0

Please sign in to comment.