fieldnotesai
    Preparing search index...

    Interface FormField

    Provides functionality for form field.

    interface FormField {
        description?: string;
        id: string;
        label: string;
        options?: FormFieldOption[];
        ratingMax?: number;
        required: boolean;
        scaleMax?: number;
        scaleMaxLabel?: string;
        scaleMin?: number;
        scaleMinLabel?: string;
        subFields?: FormField[];
        type: FormFieldType;
    }
    Index

    Properties

    description?: string
    id: string
    label: string
    options?: FormFieldOption[]
    ratingMax?: number
    required: boolean
    scaleMax?: number
    scaleMaxLabel?: string
    scaleMin?: number
    scaleMinLabel?: string
    subFields?: FormField[]