mirror of
https://github.com/matrix-org/matrix-rust-sdk.git
synced 2026-05-18 05:30:33 -04:00
23 lines
432 B
Plaintext
23 lines
432 B
Plaintext
namespace matrix_sdk_ffi {};
|
|
|
|
dictionary Mentions {
|
|
sequence<string> user_ids;
|
|
boolean room;
|
|
};
|
|
|
|
interface RoomMessageEventContentWithoutRelation {
|
|
RoomMessageEventContentWithoutRelation with_mentions(Mentions mentions);
|
|
};
|
|
|
|
[Error]
|
|
interface ClientError {
|
|
Generic(string msg);
|
|
};
|
|
|
|
interface MediaSource {
|
|
[Name=from_json, Throws=ClientError]
|
|
constructor(string json);
|
|
string to_json();
|
|
string url();
|
|
};
|