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

2
types/content.d.ts vendored
View File

@@ -5,6 +5,8 @@ interface ContentEntry {
name: string
question?: string
path: string
insertTime?: string
updateTime?: string
alternativePaths?: {
path: string
}[]

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
}
}

4
types/vanillajs-datepicker.d.ts vendored Normal file
View File

@@ -0,0 +1,4 @@
declare module "vanillajs-datepicker" {
const Datepicker: any
export default Datepicker
}