interface AsukaParametricParameter {
    default?: AsukaParametricValue;
    description?: string;
    enabledWhen?: AsukaParametricValue;
    id: string;
    label?: string;
    max?: AsukaParametricValue;
    metadata?: Record<string, unknown>;
    min?: AsukaParametricValue;
    options?: AsukaParametricSelectOption[];
    step?: number;
    type: AsukaParametricParameterType;
    unit?: string;
    visibleWhen?: AsukaParametricValue;
}

Properties

description?: string
enabledWhen?: AsukaParametricValue
id: string
label?: string
metadata?: Record<string, unknown>
step?: number
unit?: string
visibleWhen?: AsukaParametricValue