mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
6c4e8f75d4
The useful bit for sending stickers. Implements the rest of #156
7 lines
234 B
TypeScript
7 lines
234 B
TypeScript
export interface ScalarToWidgetRequest {
|
|
api: "to_widget";
|
|
action: "supported_api_versions" | "screenshot" | "capabilities" | "send_event" | "visibility" | string;
|
|
requestId: string;
|
|
widgetId: string;
|
|
data?: any;
|
|
} |