mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
16 lines
443 B
TypeScript
16 lines
443 B
TypeScript
export interface ScalarToWidgetRequest {
|
|
api: "to_widget";
|
|
action: "supported_api_versions" | "screenshot" | "capabilities" | "send_event" | "visibility" | "openid_credentials" | string;
|
|
requestId: string;
|
|
widgetId: string;
|
|
data?: any;
|
|
}
|
|
|
|
export interface ScalarFromWidgetResponse {
|
|
api: "from_widget";
|
|
action: "get_openid" | string;
|
|
requestId: string;
|
|
widgetId: string;
|
|
data?: any;
|
|
response: any;
|
|
} |