UNPKG

@eternaljs/captcha

Version:

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

14 lines (12 loc) 263 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 }