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

This commit is contained in:
Sugden
2020-09-20 22:43:14 +03:00
committed by GitHub
parent f375cbe3e3
commit 061a147fbb
+1 -1
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;