flyonui
Version:
The easiest, free and open-source Tailwind CSS component library with semantic classes.
18 lines (15 loc) • 364 B
text/typescript
export interface IStrongPasswordOptions {
target: string | HTMLInputElement
hints?: string
stripClasses?: string
minLength?: number
mode?: string
popoverSpace?: number
checksExclude?: string[]
specialCharactersSet?: string
}
export interface IStrongPassword {
options?: IStrongPasswordOptions
recalculateDirection(): void
destroy(): void
}