UNPKG

preline

Version:

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

15 lines (11 loc) 233 B
export interface IToggleCountOptions { target: string | HTMLInputElement; min: number; max: number; duration: number; } export interface IToggleCount { options?: IToggleCountOptions; countUp(): void; countDown(): void; }