reCAPTCHA Response
Google reCAPTCHA verification response with score, action, and error codes.
google
Install
$ npx shadcn@latest add @open-types/recaptcha-response
Source
export interface ReCAPTCHAResponse {
success: boolean;
challenge_ts?: string;
hostname?: string;
score?: number;
action?: string;
error_codes?: string[];
}
export interface ReCAPTCHAResponse {
success: boolean;
challenge_ts?: string;
hostname?: string;
score?: number;
action?: string;
error_codes?: string[];
}