mirror of
https://github.com/cinnyapp/cinny.git
synced 2025-11-17 04:30:29 +03:00
9 lines
252 B
TypeScript
9 lines
252 B
TypeScript
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);
|
|
}
|
|
}
|