@openproject/primer-view-components
Version:
ViewComponents of the Primer Design System for OpenProject
12 lines (11 loc) • 335 B
TypeScript
export declare abstract class CollapsibleElement extends HTMLElement {
arrowDown: Element;
arrowUp: Element;
collapsibleElements: HTMLElement[];
collapsed: boolean;
toggle(): void;
attributeChangedCallback(name: string): void;
hideAll(): void;
expandAll(): void;
abstract get baseClass(): string;
}