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 1fb8f65 commit 59f6a65Copy full SHA for 59f6a65
src/common/providers/https.ts
@@ -808,7 +808,7 @@ function wrapOnCallHandler<Req = any, Res = any>(
808
}
809
// For some reason the type system isn't picking up that the handler
810
// is a one argument function.
811
- result = await (handler as v2CallableHandler<Req, Res>)(arg, responseProxy);
+ result = await (handler as any)(arg, responseProxy);
812
813
814
// Encode the result as JSON to preserve types like Dates.
0 commit comments