interface IModelParameter {
    default: TValue;
    default2D?: TValue;
    hidden?: boolean;
    htmlEntity: IHtmlEntity;
    label: string;
    label2D?: string;
    only3D?: boolean;
    options?: { label: string; value: string; value2D?: string }[];
    unit?: IUnit;
    units?: IUnit[];
    value?: TValue;
}

Properties

default: TValue
default2D?: TValue
hidden?: boolean
htmlEntity: IHtmlEntity
label: string
label2D?: string
only3D?: boolean
options?: { label: string; value: string; value2D?: string }[]
unit?: IUnit
units?: IUnit[]
value?: TValue