mac: bundle web chat assets

This commit is contained in:
Peter Steinberger
2025-12-06 05:01:28 +01:00
parent 15cdeeddaf
commit 42d843297d
315 changed files with 16618 additions and 20 deletions

View File

@@ -0,0 +1,15 @@
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