From 1c08b19530e191c4eb26d7619ea6b5245954d0fe Mon Sep 17 00:00:00 2001 From: Corie Watson Date: Tue, 13 May 2025 22:43:25 +0100 Subject: [PATCH] chore: improve V2 callable typing --- src/v2.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/v2.ts b/src/v2.ts index e3fef18..acbab0e 100644 --- a/src/v2.ts +++ b/src/v2.ts @@ -35,7 +35,7 @@ export type WrappedV2Function> = ( ) => any | Promise; export type WrappedV2CallableFunction = ( - data: CallableRequest + data: DeepPartial ) => T | Promise; function isCallableV2Function>(