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

11 lines (10 loc) 454 B
export declare type CheckAccessKeyResponse = { ok: boolean; error?: string; }; /** * Validates the developer access key. * @param {string} devAccessKey - The developer access key to be validated. * @returns {Promise<CheckAccessKeyResponse>} - A promise that resolves to the response indicating whether the access key is valid. */ export declare const validateDevAccessKey: (devAccessKey: string) => Promise<CheckAccessKeyResponse>;