1
0
Fork 0
mirror of https://github.com/paricafe/misskey.git synced 2025-02-17 13:37:29 -06:00

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

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

View file

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