AdaCAD Library Documentation - v1.1.4
    Preparing search index...

    Type Alias OperationParam

    an operation param describes what data be provided to this operation some type of operations inherent from this to offer more specific validation data

    type OperationParam = {
        dx: string;
        name: string;
        type:
            | "number"
            | "boolean"
            | "select"
            | "file"
            | "string"
            | "draft"
            | "notation_toggle"
            | "code";
        value: OpParamValType;
    }
    Index

    Properties

    Properties

    dx: string
    name: string
    type:
        | "number"
        | "boolean"
        | "select"
        | "file"
        | "string"
        | "draft"
        | "notation_toggle"
        | "code"