Skip to content

Commit

Permalink
fix(APIGuildMember): drop nullability of pending prop (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
vladfrangu committed Dec 18, 2020
1 parent 018fc4f commit c2f0dee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion v8/payloads/guild.ts
Expand Up @@ -227,7 +227,7 @@ export interface APIGuildMember {
premium_since?: string | null;
deaf: boolean;
mute: boolean;
pending?: boolean | null;
pending?: boolean;
}

/**
Expand Down

0 comments on commit c2f0dee

Please sign in to comment.