Skip to content

Commit

Permalink
PartialChannel#id & PartialRole#id are not number & required
Browse files Browse the repository at this point in the history
Co-Authored-By: Catboy <elijahchristopherjohnson@gmail.com>
  • Loading branch information
DonovanDMC and JustCat80 committed Aug 19, 2021
1 parent eb92f1f commit 297779d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ declare namespace Eris {
}
interface PartialChannel {
bitrate?: number;
id?: number;
id: string;
name?: string;
nsfw?: boolean;
parent_id?: number;
Expand Down Expand Up @@ -1013,7 +1013,7 @@ declare namespace Eris {
interface PartialRole {
color?: number;
hoist?: boolean;
id?: number;
id: string;
mentionable?: boolean;
name?: string;
permissions?: number;
Expand Down

0 comments on commit 297779d

Please sign in to comment.