matrix-dimension/web/app/shared/models/scalar-widget-actions.ts
Travis Ralston 6c4e8f75d4 Add a sticker picker
The useful bit for sending stickers. Implements the rest of #156
2018-05-13 22:32:13 -06:00

7 lines
No EOL
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;
}