UNPKG

bot-guardian-js

Version:

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

4 lines (3 loc) 264 B
import type { GuardianConfig } from '../types'; import type { Request, Response, NextFunction } from 'express'; export declare function createGuardianMiddleware(config?: Partial<GuardianConfig>): (req: Request, res: Response, next: NextFunction) => Promise<void>;