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;