Files
cinny/src/app/features/call/CinnyWidget.ts
T

10 lines
252 B
TypeScript
Raw Normal View History

2025-04-14 09:43:51 -05:00
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);
}
}