@@ -23,7 +23,7 @@ import {
2323
2424
2525import type { dxButtonGroupItem , ContentReadyEvent , DisposingEvent , InitializedEvent , ItemClickEvent , OptionChangedEvent , SelectionChangedEvent } from 'devextreme/ui/button_group' ;
26- import type { SingleMultipleOrNone , ButtonStyle } from 'devextreme/common' ;
26+ import type { template , SingleMultipleOrNone , ButtonStyle } from 'devextreme/common' ;
2727
2828import DxButtonGroup from 'devextreme/ui/button_group' ;
2929
@@ -207,10 +207,10 @@ export class DxButtonGroupComponent extends DxComponent implements OnDestroy, On
207207
208208 */
209209 @Input ( )
210- get keyExpr ( ) : any {
210+ get keyExpr ( ) : ( ( item : any | { disabled : boolean , elementAttr : Record < string , any > , hint : string , html : string , icon : string , template : template | Function , text : string , type : any | string , visible : boolean } ) => any ) | string {
211211 return this . _getOption ( 'keyExpr' ) ;
212212 }
213- set keyExpr ( value : any ) {
213+ set keyExpr ( value : ( ( item : any | { disabled : boolean , elementAttr : Record < string , any > , hint : string , html : string , icon : string , template : template | Function , text : string , type : any | string , visible : boolean } ) => any ) | string ) {
214214 this . _setOption ( 'keyExpr' , value ) ;
215215 }
216216
@@ -441,7 +441,7 @@ export class DxButtonGroupComponent extends DxComponent implements OnDestroy, On
441441 * This member supports the internal infrastructure and is not intended to be used directly from your code.
442442
443443 */
444- @Output ( ) keyExprChange : EventEmitter < any > ;
444+ @Output ( ) keyExprChange : EventEmitter < ( ( item : any | { disabled : boolean , elementAttr : Record < string , any > , hint : string , html : string , icon : string , template : template | Function , text : string , type : any | string , visible : boolean } ) => any ) | string > ;
445445
446446 /**
447447
0 commit comments