1 files changed, 3 insertions, 1 deletions
diff --git a/src/util/schemas/responses/TypedResponses.ts b/src/util/schemas/responses/TypedResponses.ts
index cb238401..099efba3 100644
--- a/src/util/schemas/responses/TypedResponses.ts
+++ b/src/util/schemas/responses/TypedResponses.ts
@@ -69,7 +69,9 @@ export type APIEmojiArray = Emoji[];
export type APIMemberArray = Member[];
-export type GuildWithJoinedAt = Guild & { joined_at: string };
+export interface APIGuildWithJoinedAt extends Guild {
+ joined_at: string;
+}
export type APIRoleArray = Role[];
|