mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
10 lines
144 B
TypeScript
10 lines
144 B
TypeScript
import { User } from './user';
|
|
|
|
export interface ChatMessage {
|
|
id: string;
|
|
type: string;
|
|
timestamp: Date;
|
|
user: User;
|
|
body: string;
|
|
}
|