mirror of
				https://github.com/pierre42100/ComunicWeb
				synced 2025-11-04 04:04:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			286 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			286 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
/**
 | 
						|
 * Group typings
 | 
						|
 * 
 | 
						|
 * @author Pierre Hubert
 | 
						|
 */
 | 
						|
 | 
						|
declare interface AdvancedGroupInfo extends Group {
 | 
						|
    time_create: Number,
 | 
						|
    description: String,
 | 
						|
    url: String,
 | 
						|
    number_likes: Number,
 | 
						|
    is_liking: Boolean
 | 
						|
}
 | 
						|
 | 
						|
declare interface GroupSettings extends AdvancedGroupInfo {} |