diff --git a/src/bridge/ModConfig.d.ts b/src/bridge/ModConfig.d.ts index ab8ae57..528c716 100644 --- a/src/bridge/ModConfig.d.ts +++ b/src/bridge/ModConfig.d.ts @@ -88,7 +88,7 @@ export interface ModConfigSection extends ModConfigBase { /** * The description for the section that appears in a help tooltip. */ - description: string; + description?: string; /** * Determines if the section is visible or not. @@ -112,14 +112,14 @@ export interface ModConfigSection extends ModConfigBase { */ export interface ModConfigFieldBase extends ModConfigBase { /** - * The description for the field that appears in a help tooltip. + * The name of the field. */ - description: string; + name: string; /** - * The name of the field. + * The description for the field that appears in a help tooltip. */ - name: string; + description?: string; /** * Determines if the field is visible or not.