@progress/kendo-angular-buttons
Version:
Buttons Package for Angular
12 lines (11 loc) • 673 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Specifies the selection mode of the [ButtonGroup]({% slug api_buttons_buttongroupcomponent %}).
*
* - Use `'single'` to allow only one button to be selected at a time.
* - Use `'multiple'` to allow multiple buttons to be selected at the same time.
*/
export type ButtonGroupSelection = 'single' | 'multiple';