File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
packages/devextreme/js/ui/drop_down_editor Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -40,14 +40,19 @@ export interface SelectionChangedInfo<T = any> {
4040 readonly selectedItem : T ;
4141}
4242
43- type DropDownEditorOptions < T > = Omit < dxDropDownEditorOptions < T > , 'fieldTemplates' > ;
43+ // type DropDownEditorOptions<T> = Omit<dxDropDownEditorOptions<T>, 'fieldTemplates'>;
44+ type DropDownEditorOptions < T > = Omit <
45+ DataExpressionMixinOptions < T > & dxDropDownEditorOptions < T > ,
46+ 'fieldTemplates'
47+ > ;
4448
4549/**
4650 * @namespace DevExpress.ui
4751 * @docid
4852 * @hidden
4953 */
50- export interface dxDropDownListOptions < TComponent > extends DataExpressionMixinOptions < TComponent > , DropDownEditorOptions < TComponent > {
54+ export interface dxDropDownListOptions < TComponent > extends DropDownEditorOptions < TComponent > {
55+ // export interface dxDropDownListOptions<TComponent> extends DataExpressionMixinOptions<TComponent>, DropDownEditorOptions<TComponent> {
5156 /**
5257 * @docid
5358 * @readonly
You can’t perform that action at this time.
0 commit comments