Interface IModelParameter

    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;
    }[]

    Type declaration

    • label: string
    • value: string
    • Optional value2D?: string
    unit?: IUnit
    units?: IUnit[]
    value?: TValue

    Generated using TypeDoc and TypeDoc Airthium Plugin