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 c91aff3 commit c7c92e5Copy full SHA for c7c92e5
src/interfaces/IRoomAccountData.ts
@@ -17,5 +17,5 @@
17
export interface IRoomAccountData {
18
type: string;
19
room_id: string; // eslint-disable-line camelcase
20
- content: unknown;
+ content: Record<string, unknown>;
21
}
src/interfaces/IRoomEvent.ts
@@ -21,6 +21,6 @@ export interface IRoomEvent {
22
state_key?: string; // eslint-disable-line camelcase
23
origin_server_ts: number; // eslint-disable-line camelcase
24
25
- unsigned: unknown;
+ unsigned: Record<string, unknown>;
26
0 commit comments