We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 652b8a7 commit e80a90fCopy full SHA for e80a90f
packages/element-web-module-api/src/api/client.ts
@@ -6,16 +6,17 @@ Please see LICENSE files in the repository root for full details.
6
*/
7
8
import type { Room } from "../models/Room";
9
+import { Watchable } from "./watchable";
10
11
/**
12
* Modify account data stored on the homeserver.
13
* @public
14
15
export interface AccountDataApi {
16
- * Fetch account data stored from homeserver.
17
+ * Returns a watchable with account data for this event type.
18
- get(eventType: string): unknown;
19
+ get(eventType: string): Watchable<unknown>;
20
21
* Set account data on the homeserver.
22
0 commit comments