Skip to content

Commit

Permalink
✨ [#483] add type description to option and translation
Browse files Browse the repository at this point in the history
  • Loading branch information
nikkiysendoorn1 committed Mar 11, 2024
1 parent 2800feb commit 0c6ef64
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/formio/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'>;
};
}

Expand Down

0 comments on commit 0c6ef64

Please sign in to comment.