/*! * Copyright (c) 2023, 2024, Oracle and/or its affiliates. */ /** * @file * * Contains the names of the selection-modes which the Diagram Builder supports. */ const DiagramBuilderSelectionMode = { SINGLE: 'single', MULTI: 'multi', NONE: 'none' }; Object.freeze(DiagramBuilderSelectionMode); export default DiagramBuilderSelectionMode;