flyonui
Version:
The easiest, free and open-source Tailwind CSS component library with semantic classes.
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
}