Type Alias ParamSelectors

ParamSelectors:
    | {
        label: string;
        name: string;
        placeholder?: string;
        type: "string";
        value: string;
    }
    | {
        label: string;
        max?: number;
        min?: number;
        name: string;
        type: "numeric";
        value: number;
    }
    | {
        label: string;
        name: string;
        type: "boolean";
        value: boolean;
    }
    | {
        items: {
            label: string;
            value: string | number;
        }[];
        label: string;
        name: string;
        type: "select";
        value: string;
    }