zwischenstand

This commit is contained in:
2025-10-02 09:03:39 +00:00
parent 099530b7c8
commit f3dc0dc9bd
52 changed files with 994 additions and 5602 deletions

16
types/cryptcha/index.d.ts vendored Normal file
View File

@@ -0,0 +1,16 @@
declare module "cryptcha" {
interface CryptchaInitOptions {
siteId: string
target: HTMLElement
baseUrl?: string
log?: boolean
autoSolve?: boolean
onSolved?: (payload: { solution: string; solutionId: string }) => void
}
export default class Cryptcha {
constructor(options: CryptchaInitOptions)
destroy(): void
reset(): void
}
}