mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
Use Record<string, number> instead of any (#4293)
This commit is contained in:
parent
852c434dc5
commit
b80c3525a1
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue