Add backlog to type definition

This commit is contained in:
Hamcha 2019-06-11 15:50:48 +02:00
parent 4a1d6c6f1c
commit 6d9d03dc44
Signed by: hamcha
GPG Key ID: A40413D21021EAEE
1 changed files with 2 additions and 1 deletions

View File

@ -35,7 +35,8 @@ export interface RoomMessage {
}
export interface RoomServerMessage {
time: "string";
roomid: string;
time: string;
type: "event" | "message" | "welcome";
event?: RoomEvent;
message?: RoomMessage;