UNPKG

react-native-recaptcha-that-works

Version:
12 lines (11 loc) 464 B
export declare type RecaptchaSize = 'invisible' | 'normal' | 'compact'; export declare type RecaptchaTheme = 'dark' | 'light'; export declare type TemplateParams = { siteKey: string; size?: RecaptchaSize; theme?: RecaptchaTheme; lang?: string; action?: string; }; declare const getTemplate: (params: TemplateParams, recaptchaDomain: string, gstaticDomain: string, enterprise: boolean, hideBadge: boolean) => string; export default getTemplate;