mirror of
				https://github.com/owncast/owncast.git
				synced 2025-10-31 10:08:10 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			168 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			168 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { SocketEvent } from './socket-events';
 | |
| import { User } from './user.model';
 | |
| 
 | |
| export interface ChatMessage extends SocketEvent {
 | |
|   user: User;
 | |
|   body: string;
 | |
| }
 | 
