diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2023-04-14 22:26:11 +1000 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2023-04-14 22:26:11 +1000 |
commit | 4ecee6b291275263ed0c8379a83a3d9a336fd205 (patch) | |
tree | e4d3fd5d14cedad91e0c03be2b40db8d1a77d3db /src/util/schemas/responses | |
parent | Fix bug where different HTTP method handlers would overwrite eachother in spe... (diff) | |
download | server-4ecee6b291275263ed0c8379a83a3d9a336fd205.tar.xz |
fix typos
Diffstat (limited to 'src/util/schemas/responses')
-rw-r--r-- | src/util/schemas/responses/TypedResponses.ts | 4 |
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[]; |