Files
clawdbot/apps/macos/Sources/Clawdis/Resources/WebChat/components/ExpandableSection.d.ts
2025-12-06 05:01:28 +01:00

15 lines
520 B
TypeScript

import { LitElement, type TemplateResult } from "lit";
/**
* Reusable expandable section component for tool renderers.
* Captures children in connectedCallback and re-renders them in the details area.
*/
export declare class ExpandableSection extends LitElement {
summary: string;
defaultExpanded: boolean;
private expanded;
private capturedChildren;
protected createRenderRoot(): this;
connectedCallback(): void;
render(): TemplateResult;
}
//# sourceMappingURL=ExpandableSection.d.ts.map