interface BaseFieldConfiguration {
    hint?: string;
    inputType?: "file" | "select" | "textarea" | "switch" | "text" | "radio" | "checkbox" | "files";
    key: string;
    name: string;
    prefix?: string;
    suffix?: string;
    valueOptions?: null | ValueOption[];
}

Properties

hint?: string
inputType?: "file" | "select" | "textarea" | "switch" | "text" | "radio" | "checkbox" | "files"
key: string
name: string
prefix?: string
suffix?: string
valueOptions?: null | ValueOption[]