From 9b23c757fe6030bc314c65b53dd16cecb24a3070 Mon Sep 17 00:00:00 2001 From: Gigiaj Date: Mon, 14 Apr 2025 09:43:51 -0500 Subject: [PATCH] dummy meta class --- src/app/features/room/CinnyWidget.ts | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/app/features/room/CinnyWidget.ts diff --git a/src/app/features/room/CinnyWidget.ts b/src/app/features/room/CinnyWidget.ts new file mode 100644 index 00000000..3894af87 --- /dev/null +++ b/src/app/features/room/CinnyWidget.ts @@ -0,0 +1,9 @@ +import { Widget } from 'matrix-widget-api'; +import { IApp } from './SmallWidget'; + +// Wrapper class for the widget definition +export class CinnyWidget extends Widget { + public constructor(private rawDefinition: IApp) { + super(rawDefinition); + } +}