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:
parent
d54c5d4a4b
commit
26c71f27dd
1 changed files with 22 additions and 22 deletions
|
@ -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[];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue