(
...args: Parameters<typeof fHttpsCallable>
)
| 65 | > = _TypedHttpsCallable<HttpsCallable<RequestData, ResponseData>>; |
| 66 | |
| 67 | const httpsCallable = <Req, Res = unknown>( |
| 68 | ...args: Parameters<typeof fHttpsCallable> |
| 69 | ): TypedHttpsCallable<Req, Res> => { |
| 70 | return fHttpsCallable(...args) as TypedHttpsCallable<Req, Res>; |
| 71 | }; |
| 72 | |
| 73 | const functions = getFunctions(cfapp); |
| 74 |