diff --git a/src/types/guild.ts b/src/types/guild.ts index 88b6b8a09..e4a3be36a 100644 --- a/src/types/guild.ts +++ b/src/types/guild.ts @@ -469,9 +469,9 @@ export interface RawOverwrite { /** Whether this is a role or a member */ type: OverwriteType; /** The permissions that this id is allowed to do. (This will mark it as a green check.) */ - allow: string; + allow: number; /** The permissions that this id is NOT allowed to do. (This will mark it as a red x.) */ - deny: string; + deny: number; } export interface PermissionOverwrite