From 7a27b12b2b5ecc4e31c4fb58020acc47b297cf51 Mon Sep 17 00:00:00 2001 From: Raphael Date: Fri, 21 Jul 2017 02:11:37 +0200 Subject: [PATCH] .applicationID and .ownerID return a Snowflake rather than a string (#1700) --- src/structures/GroupDMChannel.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/structures/GroupDMChannel.js b/src/structures/GroupDMChannel.js index ba417143b..8c16257b4 100644 --- a/src/structures/GroupDMChannel.js +++ b/src/structures/GroupDMChannel.js @@ -54,7 +54,7 @@ class GroupDMChannel extends Channel { /** * The user ID of this Group DM's owner - * @type {string} + * @type {Snowflake} */ this.ownerID = data.owner_id; @@ -66,7 +66,7 @@ class GroupDMChannel extends Channel { /** * Application ID of the application that made this Group DM, if applicable - * @type {?string} + * @type {?Snowflake} */ this.applicationID = data.application_id;