UNPKG

preline

Version:

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

12 lines (8 loc) 219 B
export interface ITogglePasswordOptions { target: string | string[] | HTMLInputElement | HTMLInputElement[]; } export interface ITogglePassword { options?: ITogglePasswordOptions; show(): void; hide(): void; }