chore(interactions): add permissions property to received member (#56)

This commit is contained in:
Advaith
2020-12-24 05:29:05 -08:00
committed by GitHub
parent c28ef6c3d9
commit 70b427bbb3

View File

@@ -84,7 +84,7 @@ export interface APIInteraction {
data?: APIApplicationCommandInteractionData;
guild_id: string;
channel_id: string;
member: APIGuildMember & { user: APIUser };
member: APIGuildMember & { permissions: string; user: APIUser };
token: string;
version: 1;
}