UNPKG

bot-guardian-js

Version:

A powerful bot detection and prevention library for Node.js applications

9 lines (8 loc) 265 B
import React from 'react'; import type { GuardianConfig } from '../types'; interface Props { children: React.ReactNode; config?: Partial<GuardianConfig>; } export default function GuardianProvider({ children, config }: Props): React.JSX.Element; export {};