UNPKG

react-grecaptcha-v3

Version:

Google Recaptcha V3 for React.js based application. Keep website performance high while prioritizing security.

8 lines (7 loc) 236 B
export type QueueItem = { action: string; onComplete: (token: string) => void; onError: (reason: Error) => void; }; declare const useQueueRef: () => import("react").MutableRefObject<QueueItem[]>; export default useQueueRef;