@hcaptcha/react-hcaptcha
Advanced tools
Comparing version 1.10.1 to 1.10.2
{ | ||
"name": "@hcaptcha/react-hcaptcha", | ||
"version": "1.10.1", | ||
"version": "1.10.2", | ||
"types": "types/index.d.ts", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -53,7 +53,5 @@ // Type definitions for @hcaptcha/react-hcaptcha 0.1 | ||
isReady(): boolean; | ||
execute(opts: { async: true }): Promise<ExecuteResponse>; | ||
execute(opts?: { async: false }): void; | ||
execute(opts?: { async: boolean }): Promise<ExecuteResponse> | void; | ||
execute(opts?: { async?: boolean, rqdata?: string }): Promise<ExecuteResponse> | void; | ||
} | ||
export = HCaptcha; |
52709
1144