From 34ab91d703d7dcb09171ef6a1e1023e1ffc1560e Mon Sep 17 00:00:00 2001 From: Akim Mamedov Date: Thu, 16 Nov 2023 02:56:30 +0700 Subject: [PATCH] Fix type --- packages/core/js-client/src/compilerSupport/callFunction.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/js-client/src/compilerSupport/callFunction.ts b/packages/core/js-client/src/compilerSupport/callFunction.ts index 2d4970f8..cc927e81 100644 --- a/packages/core/js-client/src/compilerSupport/callFunction.ts +++ b/packages/core/js-client/src/compilerSupport/callFunction.ts @@ -50,7 +50,7 @@ export type CallAquaFunctionArgs = { config: CallAquaFunctionConfig | undefined; peer: FluencePeer; args: { [key: string]: JSONValue | ArgCallbackFunction }; - fireAndForget: boolean | undefined; + fireAndForget?: boolean | undefined; }; export type CallAquaFunctionConfig = {