1
0
Fork 1
mirror of https://github.com/Vendicated/Vencord.git synced 2025-01-11 10:26:21 +00:00

Fix types in HolyNotes namespace

This commit is contained in:
Wolfie 2024-03-10 08:16:40 -04:00
parent d54c5d4a4b
commit 26c71f27dd
No known key found for this signature in database
GPG key ID: DE384EE9BF2D909A

View file

@ -20,7 +20,7 @@ export declare namespace Discord {
export interface Reaction extends MessageReaction { export interface Reaction extends MessageReaction {
burst_colors: string[]; burst_colors: string[];
borst_count: number; borst_count: number;
count_details: { burst: number; normal: number }; count_details: { burst: number; normal: number; };
me_burst: boolean; me_burst: boolean;
} }
} }
@ -44,4 +44,4 @@ export declare namespace HolyNotes {
reactions: Discord.Reaction[]; reactions: Discord.Reaction[];
stickerItems: Discord.Sticker[]; stickerItems: Discord.Sticker[];
} }
} }