fix(RESTPostAPIGuildsJSONBody): system_channel_flags is optional (#53)

This commit is contained in:
didinele
2020-12-19 16:29:52 +02:00
committed by GitHub
parent 2b89beb52b
commit ba4c0d78f4

View File

@@ -52,7 +52,7 @@ export interface RESTPostAPIGuildsJSONBody {
afk_channel_id?: number | string;
afk_timeout?: number;
system_channel_id?: number | string;
system_channel_flags: GuildSystemChannelFlags;
system_channel_flags?: GuildSystemChannelFlags;
}
export type RESTPostAPIGuildsResult = APIGuild;