preline
Version:
Preline UI is an open-source set of prebuilt UI components based on the utility-first Tailwind CSS framework.
20 lines (15 loc) • 430 B
text/typescript
export interface IAccordionTreeViewStaticOptions {}
export interface IAccordionTreeView {
el: HTMLElement | null;
options?: IAccordionTreeViewStaticOptions;
listeners?: { el: HTMLElement; listener: (evt: Event) => void }[];
}
export interface IAccordionOptions {}
export interface IAccordion {
options?: IAccordionOptions;
toggleClick(evt: Event): void;
show(): void;
hide(): void;
update(): void;
destroy(): void;
}