fix: allow/deny are strings in v8 (#239)

This commit is contained in:
ITOH
2020-12-09 09:31:34 +04:00
committed by GitHub
parent 7bdbcb76d6
commit 307c75c91e
+2 -2
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