mirror of
https://github.com/owncast/owncast.git
synced 2024-11-24 13:50:06 +03:00
9 lines
144 B
TypeScript
9 lines
144 B
TypeScript
import { User } from './user';
|
|
|
|
export interface ChatMessage {
|
|
id: string;
|
|
type: string;
|
|
timestamp: Date;
|
|
user: User;
|
|
body: string;
|
|
}
|