diff --git a/src/formio/common.ts b/src/formio/common.ts index 388cf49..bc9cbae 100644 --- a/src/formio/common.ts +++ b/src/formio/common.ts @@ -7,8 +7,9 @@ import {ComponentTranslations} from './i18n'; export interface Option { value: string; label: string; + description?: string; openForms?: { - translations: ComponentTranslations<'label'>; + translations: ComponentTranslations<'label' | 'description'>; }; }