feat(card): implement clan tags

This commit is contained in:
Hexagonn
2024-09-17 21:24:28 +07:00
parent c783ae1dff
commit 08dd29fd05
5 changed files with 81 additions and 3 deletions

View File

@@ -37,6 +37,14 @@ export interface DiscordUser {
avatar: string;
global_name: string;
display_name: string;
clan: ClanTag | null;
}
export interface ClanTag {
tag: string;
badge: string;
identity_enabled: boolean;
identity_guild_id: number;
}
export interface Activity {