fix: restore build after deps update

This commit is contained in:
Peter Steinberger
2025-12-26 12:17:36 +00:00
parent 54de5ad3fa
commit 557f8e5a04
3 changed files with 676 additions and 656 deletions

View File

@@ -42,7 +42,7 @@ type NodeOfType<T extends AnyComponentNode["type"]> = Extract<
// This is the base class all the components will inherit
@customElement("a2ui-root")
export class Root extends SignalWatcher(LitElement) {
export class Root extends (SignalWatcher(LitElement) as typeof LitElement) {
@property()
accessor surfaceId: SurfaceID | null = null;