From b5c041282a855c265074433e46bd2155b952125b Mon Sep 17 00:00:00 2001 From: Elvy <88881326+EepyElvyra@users.noreply.github.com> Date: Sat, 4 Jan 2025 14:55:11 +0100 Subject: [PATCH] change to javadoc --- src/utils/types.ts | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/src/utils/types.ts b/src/utils/types.ts index 2bd51cab2..85d34b6e5 100644 --- a/src/utils/types.ts +++ b/src/utils/types.ts @@ -169,9 +169,18 @@ export const enum OptionType { SLIDER, COMPONENT, ARRAY, - USERS, // List of users - CHANNELS, // List of channels - GUILDS, // List of guilds + /** + * List of users + */ + USERS, + /** + * List of channels + */ + CHANNELS, + /** + * List of guilds + */ + GUILDS, } export type SettingsDefinition = Record;