From d5a020e307bd09e7fa11227913b7fd1e4b8664aa Mon Sep 17 00:00:00 2001 From: ITOH Date: Wed, 9 Dec 2020 07:42:53 +0100 Subject: [PATCH] Revert "Revert "Allow/Deny changed to Strings in v8"" This reverts commit 4fb7ef271ec271847e3d9323ba6bd91b9acf73be. --- src/types/guild.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/types/guild.ts b/src/types/guild.ts index e4a3be36a..88b6b8a09 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: number; + allow: string; /** The permissions that this id is NOT allowed to do. (This will mark it as a red x.) */ - deny: number; + deny: string; } export interface PermissionOverwrite