Documentation
    Preparing search index...

    Interface SkillField

    interface SkillField {
        default?: any;
        description?: string;
        label: string;
        name: string;
        options?: { label: string; value: string }[];
        placeholder?: string;
        required?: boolean;
        type: "number" | "boolean" | "password" | "text" | "textarea" | "select";
    }
    Index

    Properties

    default?: any
    description?: string
    label: string
    name: string
    options?: { label: string; value: string }[]
    placeholder?: string
    required?: boolean
    type: "number" | "boolean" | "password" | "text" | "textarea" | "select"