mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	Use Record<string, number> instead of any (#4293)
This commit is contained in:
		
							parent
							
								
									a5660d6c82
								
							
						
					
					
						commit
						683b242215
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -49,7 +49,7 @@ export type INote = {
 | 
				
			||||||
	localOnly: boolean;
 | 
						localOnly: boolean;
 | 
				
			||||||
	renoteCount: number;
 | 
						renoteCount: number;
 | 
				
			||||||
	repliesCount: number;
 | 
						repliesCount: number;
 | 
				
			||||||
	reactionCounts: any;
 | 
						reactionCounts: Record<string, number>;
 | 
				
			||||||
	mentions: mongo.ObjectID[];
 | 
						mentions: mongo.ObjectID[];
 | 
				
			||||||
	mentionedRemoteUsers: {
 | 
						mentionedRemoteUsers: {
 | 
				
			||||||
		uri: string;
 | 
							uri: string;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue