UNPKG

@sebak/recaptcha-v3

Version:

![npm](https://img.shields.io/npm/v/recaptcha-v3.svg) ![npm type definitions](https://img.shields.io/npm/types/recaptcha-v3.svg)

11 lines (10 loc) 278 B
declare global { const grecaptcha: IReCaptchaInstance; } export interface IReCaptchaInstance { ready(callback: () => void): void; execute(siteKey: string, options: IExecuteOptions): Promise<string>; } export declare interface IExecuteOptions { action: string; }