UNPKG

captcha-canvas-js

Version:

A simple captcha generator using canvas in JavaScript

8 lines (7 loc) 261 B
import type { CaptchaStore } from "../types"; export declare class MemoryStore implements CaptchaStore { private store; set(id: string, value: string): Promise<void>; get(id: string): Promise<string | null>; delete(id: string): Promise<void>; }