UNPKG

captcha-canvas-js

Version:

A simple captcha generator using canvas in JavaScript

9 lines (8 loc) 311 B
import type { CaptchaOptions, CaptchaStore, CaptchaResult } from "../types"; export declare class Captcha { private store; private options; constructor(store: CaptchaStore, options?: CaptchaOptions); generate(): Promise<CaptchaResult>; verify(id: string, input: string): Promise<boolean>; }