rcaptcha
Version:
rCaptcha Human Verification | by Swôth#9990 & Loiren#0555 & Roalia#0001
13 lines (12 loc) • 371 B
text/typescript
import { Difficulty } from "src/utils";
export interface IrCaptcha {
difficulty: 'KOLAY' | 'ORTA' | 'ZOR' | 'ÇOKZOR' | 'EASY' | 'MEDIUM' | 'HARD' | 'VERYHARD';
length: number;
keywords?: string;
captcha?: {
backgroundColor?: string;
textColor?: string;
strokeColor?: string;
backgroundImage?: string;
}
};