We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8243fd commit eaad783Copy full SHA for eaad783
packages/tracing/src/integrations/express.ts
@@ -29,7 +29,7 @@ type Method =
29
| 'use';
30
31
type Router = {
32
- [method in Method]: (...args: unknown[]) => unknown;
+ [method in Method]: (...args: any) => any; // eslint-disable-line @typescript-eslint/no-explicit-any
33
};
34
35
interface ExpressResponse {
0 commit comments