From 683b24221577d3b85f4a5f1eb5f10f84bee57cf5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Acid=20Chicken=20=28=E7=A1=AB=E9=85=B8=E9=B6=8F=29?=
 <root@acid-chicken.com>
Date: Sun, 17 Feb 2019 19:38:46 +0900
Subject: [PATCH] Use Record<string, number> instead of any (#4293)

---
 src/models/note.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/models/note.ts b/src/models/note.ts
index 352de4f8d..9bdf22e97 100644
--- a/src/models/note.ts
+++ b/src/models/note.ts
@@ -49,7 +49,7 @@ export type INote = {
 	localOnly: boolean;
 	renoteCount: number;
 	repliesCount: number;
-	reactionCounts: any;
+	reactionCounts: Record<string, number>;
 	mentions: mongo.ObjectID[];
 	mentionedRemoteUsers: {
 		uri: string;