preline
Version:
Preline UI is an open-source set of prebuilt UI components based on the utility-first Tailwind CSS framework.
17 lines (11 loc) • 295 B
text/typescript
export interface IAccordionTreeViewStaticOptions {}
export interface IAccordionTreeView {
el: HTMLElement | null;
options?: IAccordionTreeViewStaticOptions
}
export interface IAccordionOptions {}
export interface IAccordion {
options?: IAccordionOptions;
show(): void;
hide(): void;
}