@wojtekmaj/react-recaptcha-v3
Version:
Integrate Google reCAPTCHA v3 with your React app
9 lines (8 loc) • 361 B
TypeScript
import type { ReCaptchaInstance } from './types.js';
export type ReCaptchaContextType = {
container?: string | HTMLElement;
executeRecaptcha?: (action?: string) => Promise<string> | null;
reCaptchaInstance?: ReCaptchaInstance | null;
};
declare const ReCaptchaContext: import("react").Context<ReCaptchaContextType>;
export default ReCaptchaContext;