fix(APIChannel): position is optional (#21)

This commit is contained in:
Sugden
2020-09-20 20:43:14 +01:00
committed by GitHub
parent f375cbe3e3
commit 061a147fbb

View File

@@ -20,7 +20,7 @@ export interface APIPartialChannel {
*/
export interface APIChannel extends APIPartialChannel {
guild_id?: string;
position: number;
position?: number;
permission_overwrites?: APIOverwrite[];
name?: string;
topic?: string | null;