1
0
Fork 1
mirror of https://github.com/Vendicated/Vencord.git synced 2025-01-11 02:16:23 +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

@ -11,37 +11,37 @@ export declare namespace Discord {
format_type: number; format_type: number;
id: string; id: string;
name: string; name: string;
} }
export interface Attachment extends MessageAttachment { export interface Attachment extends MessageAttachment {
sensitive: boolean; sensitive: boolean;
} }
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;
} }
} }
export declare namespace HolyNotes { export declare namespace HolyNotes {
export interface Note { export interface Note {
id: string;
channel_id: string;
guild_id: string;
content: string;
author: {
id: string; id: string;
avatar: string; channel_id: string;
discriminator: string; guild_id: string;
username: string; content: string;
}; author: {
flags: number; id: string;
timestamp: string; avatar: string;
attachments: Discord.Attachment[]; discriminator: string;
embeds: Embed[]; username: string;
reactions: Discord.Reaction[]; };
stickerItems: Discord.Sticker[]; flags: number;
timestamp: string;
attachments: Discord.Attachment[];
embeds: Embed[];
reactions: Discord.Reaction[];
stickerItems: Discord.Sticker[];
} }
} }