Fill out the follower component

This commit is contained in:
Gabe Kangas
2022-05-03 14:17:05 -07:00
parent 2cfb336411
commit 008f607cf7
8 changed files with 70 additions and 26 deletions

View File

@ -1,6 +1,6 @@
import { User } from './user.model';
export enum SocketMessageType {
export enum MessageType {
CHAT = 'CHAT',
PING = 'PING',
NAME_CHANGE = 'NAME_CHANGE',
@ -21,7 +21,7 @@ export enum SocketMessageType {
export interface SocketEvent {
id: string;
timestamp: Date;
type: SocketMessageType;
type: MessageType;
}
export interface ConnectedClientInfoEvent extends SocketEvent {