Fill out some more components + add application state enums
This commit is contained in:
@@ -1 +1,9 @@
|
||||
export interface ChatMessage {}
|
||||
import { User } from './user';
|
||||
|
||||
export interface ChatMessage {
|
||||
id: string;
|
||||
type: string;
|
||||
timestamp: Date;
|
||||
user: User;
|
||||
body: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user