Interface RenderInstructions<Custom>

Instructions to be used for rendering frontend UI.

interface RenderInstructions<Custom> {
    groups: GroupRenderInstructions<Custom>[];
    questions: QuestionRenderInstructions<Custom>[];
    validating: boolean;
}

Type Parameters

  • Custom = any

Properties

Groups.

Questions directly under the form, without grouping.

validating: boolean

Whether or not there are questions in the form that are currently being validated.

This value can be true if the validator used is an aysnc function.