@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
15 lines (14 loc) • 425 B
TypeScript
import React from 'react';
import type { ICredentialsConfig } from '../../interfaces';
export interface Area2State {
canAccess: boolean;
desktopTextValue: string;
iOSTextValue: string;
androidTextValue: string;
}
interface Props {
children: React.ReactNode;
config: ICredentialsConfig;
}
export declare const Area2Provider: ({ children, config }: Props) => React.JSX.Element;
export {};