altcha
Version:
Privacy-first CAPTCHA widget, compliant with global regulations (GDPR/HIPAA/CCPA/LGDP/DPDPA/PIPL) and WCAG accessible. No tracking, self-verifying.
23 lines (22 loc) • 522 B
TypeScript
import './global';
import type { CSSVariables, WidgetAttributes } from './';
export {};
interface AltchaWidgetJSX extends WidgetAttributes {
class?: string;
className?: string;
hidden?: boolean;
id?: string;
role?: string;
slot?: string;
style?: string | Partial<CSSVariables>;
tabindex?: number | string;
tabIndex?: number;
title?: string;
}
declare global {
namespace JSX {
interface IntrinsicElements {
'altcha-widget': AltchaWidgetJSX;
}
}
}