Merge pull request #1428 from CyberL1/fix/guild-folder-types-nullable

This commit is contained in:
Cyber
2025-12-05 17:15:09 +01:00
committed by GitHub
3 changed files with 3 additions and 3 deletions
Binary file not shown.
Binary file not shown.
+3 -3
View File
@@ -62,10 +62,10 @@ export interface CustomStatus {
}
export interface GuildFolder {
color?: number;
color?: number | null;
guild_ids: string[];
id?: number;
name?: string;
id?: number | null;
name?: string | null;
}
export interface FriendSourceFlags {