HttpsCallableOptions
interface
An interface for metadata about how calls should be executed. An instance of HttpsCallableOptions can be passed as the second argument to firebase.functions().httpsCallable(name, httpsCallableOptions)
.
Properties
requireLimitedUseAppCheckTokens
</>Whether or not to protect the callable function with a limited-use App Check token.
requireLimitedUseAppCheckTokens: undefined | false | true;
timeout
</>The timeout property is the time in milliseconds after which to cancel if there is no response. Default is 70000.
timeout: undefined | number;