zwischenstand
This commit is contained in:
2
types/content.d.ts
vendored
2
types/content.d.ts
vendored
@@ -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
16
types/cryptcha/index.d.ts
vendored
Normal 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
4
types/vanillajs-datepicker.d.ts
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
declare module "vanillajs-datepicker" {
|
||||
const Datepicker: any
|
||||
export default Datepicker
|
||||
}
|
||||
Reference in New Issue
Block a user