UNPKG

@eternaljs/captcha

Version:

This npm package generates secure and customizable CAPTCHA images for web applications, preventing automated abuse with ease.

13 lines (12 loc) 250 B
import { Canvas } from "canvas"; export interface OptionsInterface { width: number; height: number; font_size?: number; length?: number; lines?: number; } export interface CaptchaInterface { text: string; image: Canvas; }