/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Represents the available check modes of the TreeView
 * ([see example]({% slug checkboxes_treeview %})).
 *
 * <demo metaUrl="treeview/checkable/check-mode/" height="300"></demo>
 */
export type CheckMode = "single" | "multiple";
