fix: add | null to guild folder types

This commit is contained in:
CyberL1
2025-12-05 17:13:40 +01:00
parent d354de8f3d
commit ae20c6dce4
3 changed files with 3 additions and 3 deletions

Binary file not shown.

Binary file not shown.

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 {