dummy meta class

This commit is contained in:
Gigiaj 2025-04-14 09:43:51 -05:00
parent e1a080e50c
commit 9b23c757fe

View file

@ -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);
}
}