v-ingredients
Version:
Reusable Components
15 lines (13 loc) • 370 B
text/typescript
import InputRadioChoice from "../../InputRadio/interfaces/IInputRadioChoice";
export default interface Consent {
name: string;
label: string;
documentCode?: string;
hide?: boolean | null;
required?: boolean;
checked?: boolean;
error?: string | null;
displayAsCheckbox?: boolean
choices?: InputRadioChoice[]
validation?: string
}