Type alias FormElementValidation

FormElementValidation: undefined | string | {
    formElements: FormElementsValidation | undefined;
    type: "formElements";
} | {
    entries: Record<RepeatableSetEntryIndex, FormElementsValidation | undefined>;
    set: string | undefined;
    type: "repeatableSet";
}

Type declaration

Type declaration