UNPKG

flyonui

Version:

The easiest, free and open-source Tailwind CSS component library with semantic classes.

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