UNPKG

preline

Version:

Preline UI is an open-source set of prebuilt UI components based on the utility-first Tailwind CSS framework.

18 lines (15 loc) 365 B
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; }