blob: 15b258c94bef5b4e325890c31506cae0b35a061c (
plain)
1
2
3
4
5
6
7
8
9
10
|
export interface IRoomEvent {
type: string;
sender: string;
event_id: string;
room_id: string;
state_key?: string;
origin_server_ts: number;
content: unknown;
unsigned: unknown;
}
|