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

    Interface OperationClassification

    this type is used to classify operations in the dropdown menu

    the name of the category for all associated operations (e.g. block, structure)

    a description of that category to show on screen

    an array of all the operations associated with this category

    interface OperationClassification {
        category_name: string;
        color: string;
        description: string;
        op_names: string[];
    }
    Index

    Properties

    category_name: string
    color: string
    description: string
    op_names: string[]