preline
Version:
Preline UI is an open-source set of prebuilt UI components based on the utility-first Tailwind CSS framework.
17 lines (14 loc) • 301 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;
}