From 6e1175259093c578c92501ff375813043a20a26a Mon Sep 17 00:00:00 2001 From: Tristan Brice Velloza Kildaire Date: Sat, 27 Apr 2024 13:48:41 +0200 Subject: [PATCH] ConfigType - Documented enum members --- source/niknaks/config.d | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/source/niknaks/config.d b/source/niknaks/config.d index bf0bfee..4fee4a3 100644 --- a/source/niknaks/config.d +++ b/source/niknaks/config.d @@ -39,9 +39,24 @@ private union ConfigValue */ public enum ConfigType { + /** + * A string + */ TEXT, + + /** + * An integer + */ NUMERIC, + + /** + * A boolean + */ FLAG, + + /** + * A string array + */ ARRAY }