From 09dbc0b7b210fa1046c5d5a13acf5b949d7905c2 Mon Sep 17 00:00:00 2001 From: n1ck_pro <59617443+N1ckPro@users.noreply.github.com> Date: Sun, 24 Mar 2024 12:16:01 +0100 Subject: [PATCH] docs: remove unused typedef --- .../src/structures/BaseInteraction.js | 36 ------------------- 1 file changed, 36 deletions(-) diff --git a/packages/discord.js/src/structures/BaseInteraction.js b/packages/discord.js/src/structures/BaseInteraction.js index 09e717bc9ead..8a25f6f6ac32 100644 --- a/packages/discord.js/src/structures/BaseInteraction.js +++ b/packages/discord.js/src/structures/BaseInteraction.js @@ -87,42 +87,6 @@ class BaseInteraction extends Base { ? new PermissionsBitField(data.member.permissions).freeze() : null; - /** - * A Discord locale string, possible values are: - * * en-US (English, US) - * * en-GB (English, UK) - * * bg (Bulgarian) - * * zh-CN (Chinese, China) - * * zh-TW (Chinese, Taiwan) - * * hr (Croatian) - * * cs (Czech) - * * da (Danish) - * * nl (Dutch) - * * fi (Finnish) - * * fr (French) - * * de (German) - * * el (Greek) - * * hi (Hindi) - * * hu (Hungarian) - * * it (Italian) - * * ja (Japanese) - * * ko (Korean) - * * lt (Lithuanian) - * * no (Norwegian) - * * pl (Polish) - * * pt-BR (Portuguese, Brazilian) - * * ro (Romanian, Romania) - * * ru (Russian) - * * es-ES (Spanish) - * * sv-SE (Swedish) - * * th (Thai) - * * tr (Turkish) - * * uk (Ukrainian) - * * vi (Vietnamese) - * @see {@link https://discord.com/developers/docs/reference#locales} - * @typedef {string} Locale - */ - /** * The locale of the user who invoked this interaction * @type {Locale}