UNPKG
better-auth-is-bot
Version:
beta (1.0.3-beta.14)
latest (1.0.0)
1.0.3-beta.14
1.0.3-beta.13
1.0.3-beta.12
1.0.3-beta.10
1.0.0
A better-auth plugin to detect and block bots.
better-auth-is-bot
/
dist
/
index.d.mts
10 lines
(7 loc)
•
227 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
BetterAuthPlugin
}
from
'better-auth'
;
interface
IsBotOptions
{
protectedEndpoints
?:
string
[]; }
declare
const
IsBot
:
(
options
?:
IsBotOptions
) =>
BetterAuthPlugin
;
export
{
IsBot
};
export
type
{
IsBotOptions
};