First pass at the social/federated chat component. Closes #2172

This commit is contained in:
Gabe Kangas
2022-10-05 22:43:24 -07:00
parent 11ceebd84f
commit 19e4e99127
7 changed files with 142 additions and 9 deletions

View File

@@ -0,0 +1,8 @@
import { SocketEvent } from './socket-events';
export interface ChatSocialMessage extends SocketEvent {
title: string;
body: string;
image: string;
link: string;
}