1
0
forked from Yara724/api
Files
yara724-api/src/types/svg-captcha.d.ts
SepehrYahyaee af875a4773 YARA-913
2026-05-24 10:10:17 +03:30

22 lines
492 B
TypeScript

declare module "svg-captcha" {
export interface CaptchaOptions {
size?: number;
ignoreChars?: string;
noise?: number;
color?: boolean;
background?: string;
width?: number;
height?: number;
fontSize?: number;
charPreset?: string;
}
export interface CaptchaResult {
data: string;
text: string;
}
export function create(options?: CaptchaOptions): CaptchaResult;
export function createMathExpr(options?: CaptchaOptions): CaptchaResult;
}