Skip to content

Commit eaad783

Browse files
authored
fix: Revert express tracing integration type to use any (#3093)
1 parent d8243fd commit eaad783

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/tracing/src/integrations/express.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ type Method =
2929
| 'use';
3030

3131
type Router = {
32-
[method in Method]: (...args: unknown[]) => unknown;
32+
[method in Method]: (...args: any) => any; // eslint-disable-line @typescript-eslint/no-explicit-any
3333
};
3434

3535
interface ExpressResponse {

0 commit comments

Comments
 (0)