in src/recaptcha.tsx [62:73]
export function execute(
action: RecaptchaAction,
timeout?: number
): Promise<string> {
let args: Args = {};
if (timeout) {
args.timeout = timeout;
}
return RecaptchaEnterpriseReactNative.execute(action.action, args);
}