fix: overwrite typo

This commit is contained in:
ITOH
2021-05-19 19:09:00 +02:00
parent cc156a7add
commit a454eb7210
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ export interface Guild {
owner?: boolean;
/** Id of the owner */
ownerId: string;
/** Total permissions for the user in the guild (execludes overrides) */
/** Total permissions for the user in the guild (execludes overwrites) */
permissions?: string;
/** Voice region id for the guild */
region: string;
@@ -2,6 +2,6 @@ import { GuildMemberWithUser } from "../members/guild_member.ts";
/** https://discord.com/developers/docs/resources/guild#guild-member-object */
export interface InteractionGuildMember extends GuildMemberWithUser {
/** Total permissions of the member in the channel, including overrides, returned when in the interaction object */
/** Total permissions of the member in the channel, including overwrites, returned when in the interaction object */
permissions: string;
}