mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
17656e8cf7
This implements a 'screenshot' button on the generic widget wrapper, although there's several bugs with the current Riot implementation that prevent it from working and that is why it is commented out. Fixes #155. Even if it doesn't work.
7 lines
241 B
TypeScript
7 lines
241 B
TypeScript
export interface ScalarToWidgetRequest {
|
|
api: "to_widget";
|
|
action: "supported_api_versions" | "screenshot" | "capabilities" | "send_event" | "visibility_change" | string;
|
|
requestId: string;
|
|
widgetId: string;
|
|
data?: any;
|
|
} |