Use Record<string, number> instead of any (#4293)

This commit is contained in:
Acid Chicken (硫酸鶏) 2019-02-17 19:38:46 +09:00 committed by syuilo
parent 852c434dc5
commit b80c3525a1

View File

@ -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;