UNPKG

@area2-ai/a2-react-keystroke-package

Version:

This package enables secure and efficient collection of user keystroke data through hooks, designed for both desktop and mobile platforms. The collected data is processed by **area2** servers to generate a neuroprofile, which reflects key cognitive, behav

10 lines (9 loc) 337 B
import React from 'react'; interface Props extends React.InputHTMLAttributes<HTMLInputElement> { } /** * Component that renders an input field for Android mobile devices * with keystroke tracking and additional event handlers. */ export declare const A2AndroidTextInput: ({ ...rest }: Props) => React.JSX.Element; export {};