From e57b3a7cdf82e7df1363c86022e552ddfc97df29 Mon Sep 17 00:00:00 2001 From: ZickZenni Date: Fri, 6 Sep 2024 09:29:25 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8F=B7=EF=B8=8F=20Relationship=20nickname?= =?UTF-8?q?=20type=20set=20to=20string=20|=20null?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/discord/structures/Relationship.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/discord/structures/Relationship.ts b/src/discord/structures/Relationship.ts index 7f510c1..51f5c0d 100644 --- a/src/discord/structures/Relationship.ts +++ b/src/discord/structures/Relationship.ts @@ -4,7 +4,7 @@ export interface Relationship { user_id: Snowflake; type: number; since: string; - nickname: any; + nickname: string | null; is_spam_request: boolean; id: Snowflake; }