Add Fediverse event chat views. Closes #2679

This commit is contained in:
Gabe Kangas
2023-02-05 19:58:24 -08:00
parent 922c68bcf7
commit 313a81359a
7 changed files with 586 additions and 15 deletions

View File

@ -42,3 +42,10 @@ export interface MessageVisibilityEvent extends SocketEvent {
visible: boolean;
ids: string[];
}
export interface FediverseEvent extends SocketEvent {
title: string;
image: string;
link: string;
body: string;
}