From 4fb7ef271ec271847e3d9323ba6bd91b9acf73be Mon Sep 17 00:00:00 2001 From: ITOH Date: Tue, 8 Dec 2020 22:26:09 +0100 Subject: [PATCH] Revert "Allow/Deny changed to Strings in v8" This reverts commit 3ffb55705c1339e39540d7b2c8ccd0be275d0038. --- 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 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