mirror of
				https://github.com/owncast/owncast.git
				synced 2025-11-01 02:44:31 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			176 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			176 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| export interface User {
 | |
|   id: string;
 | |
|   displayName: string;
 | |
|   displayColor: number;
 | |
|   createdAt: Date;
 | |
|   previousNames: string[];
 | |
|   nameChangedAt: Date;
 | |
|   scopes: string[];
 | |
| }
 | 
