flyonui
Version:
The easiest, free and open-source Tailwind CSS component library with semantic classes.
18 lines (14 loc) • 302 B
text/typescript
export interface ITabsOnChangePayload {
el: HTMLElement
tabsId: string
prev: string
current: string
}
export interface ITabsOptions {
eventType: 'click' | 'hover'
preventNavigationResolution: string | number | null
}
export interface ITabs {
options?: ITabsOptions
destroy(): void
}