UNPKG

better-auth-is-bot

Version:

A better-auth plugin to detect and block bots.

10 lines (7 loc) 227 B
import { BetterAuthPlugin } from 'better-auth'; interface IsBotOptions { protectedEndpoints?: string[]; } declare const IsBot: (options?: IsBotOptions) => BetterAuthPlugin; export { IsBot }; export type { IsBotOptions };