Revert "Revert "Allow/Deny changed to Strings in v8""

This reverts commit 4fb7ef271e.
This commit is contained in:
ITOH
2020-12-09 07:42:53 +01:00
parent 4fb7ef271e
commit d5a020e307

View File

@@ -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