From 105a1945468b2610cd44c3a451a798fdd6aea1b7 Mon Sep 17 00:00:00 2001 From: Kevin Date: Thu, 29 Jul 2021 12:53:38 +0200 Subject: [PATCH] docs(Constants): fix StickerTypes typedef (#6218) --- src/util/Constants.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/Constants.js b/src/util/Constants.js index c4ef7039345f..5ac5a1db7dc2 100644 --- a/src/util/Constants.js +++ b/src/util/Constants.js @@ -829,7 +829,7 @@ exports.WebhookTypes = createEnum([null, 'Incoming', 'Channel Follower']); * The value set for a sticker's type: * * STANDARD * * GUILD - * @typedef {string} StickerFormatType + * @typedef {string} StickerType */ exports.StickerTypes = createEnum([null, 'STANDARD', 'GUILD']);