@ulu/frontend
Version:
A framework-agnostic frontend toolkit providing a modular, tree-shakable library of accessible components and utilities. Designed for seamless integration, it features a highly configurable SCSS system for any environment and vanilla JavaScript modules op
22 lines • 650 B
TypeScript
import { ComponentInitializer } from '../core/component.js';
/**
* Init all instances currently in document
*/
export function init(): void;
/**
* Setup a new TabManager instance
* @param {HTMLElement} element Tablist Element
* @param {object} options Options to set as defaults
* @return {object} Instance object
*/
export function setup(element: HTMLElement, options?: object): object;
/**
* Array of current tab instances (exported if you need to interact with them)
* @type {Array}
*/
export const instances: any[];
/**
* Tabs Component Initializer
*/
export const initializer: ComponentInitializer;
//# sourceMappingURL=tabs.d.ts.map