diff --git a/packages/devextreme/js/common/charts.d.ts b/packages/devextreme/js/common/charts.d.ts index 8907a07b402e..182590995a78 100644 --- a/packages/devextreme/js/common/charts.d.ts +++ b/packages/devextreme/js/common/charts.d.ts @@ -49,7 +49,12 @@ export type ChartsDataType = 'datetime' | 'numeric' | 'string'; * @public * @namespace DevExpress.common.charts */ -export type DashStyle = 'dash' | 'dot' | 'longDash' | 'solid'; +export type DashStyle = 'solid' +| 'dash' | 'dot' | 'longDash' +| `${'dash' | 'dot' | 'longDash'}${'dash' | 'dot' | 'longDash'}` +| `${'dash' | 'dot' | 'longDash'}${'dash' | 'dot' | 'longDash'}${'dash' | 'dot' | 'longDash'}` +| `${'dash' | 'dot' | 'longDash'}${'dash' | 'dot' | 'longDash'}${'dash' | 'dot' | 'longDash'}${'dash' | 'dot' | 'longDash'}` +| `${'dash' | 'dot' | 'longDash'}${'dash' | 'dot' | 'longDash'}${'dash' | 'dot' | 'longDash'}${'dash' | 'dot' | 'longDash'}${'dash' | 'dot' | 'longDash'}`; /** * @public diff --git a/packages/devextreme/ts/dx.all.d.ts b/packages/devextreme/ts/dx.all.d.ts index 6af5e097c9e9..b3dcd46c5e4d 100644 --- a/packages/devextreme/ts/dx.all.d.ts +++ b/packages/devextreme/ts/dx.all.d.ts @@ -697,12 +697,11 @@ declare module DevExpress { * [descr:DOMComponentOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface DOMComponentOptions - extends ComponentOptions< - DevExpress.common.core.events.EventInfo, - DevExpress.common.core.events.InitializedEventInfo, - DevExpress.DOMComponent.OptionChangedEventInfo - > { + export interface DOMComponentOptions extends ComponentOptions< + DevExpress.common.core.events.EventInfo, + DevExpress.common.core.events.InitializedEventInfo, + DevExpress.DOMComponent.OptionChangedEventInfo + > { /** * [descr:DOMComponentOptions.elementAttr] */ @@ -2075,7 +2074,15 @@ declare module DevExpress.common.charts { }; export type ChartsDataType = 'datetime' | 'numeric' | 'string'; export type ChartsLabelOverlap = 'hide' | 'none' | 'stack'; - export type DashStyle = 'dash' | 'dot' | 'longDash' | 'solid'; + export type DashStyle = + | 'solid' + | 'dash' + | 'dot' + | 'longDash' + | `${'dash' | 'dot' | 'longDash'}${'dash' | 'dot' | 'longDash'}` + | `${'dash' | 'dot' | 'longDash'}${'dash' | 'dot' | 'longDash'}${'dash' | 'dot' | 'longDash'}` + | `${'dash' | 'dot' | 'longDash'}${'dash' | 'dot' | 'longDash'}${'dash' | 'dot' | 'longDash'}${'dash' | 'dot' | 'longDash'}` + | `${'dash' | 'dot' | 'longDash'}${'dash' | 'dot' | 'longDash'}${'dash' | 'dot' | 'longDash'}${'dash' | 'dot' | 'longDash'}${'dash' | 'dot' | 'longDash'}`; export type DiscreteAxisDivisionMode = 'betweenLabels' | 'crossLabels'; /** * [descr:Font] @@ -3267,8 +3274,10 @@ declare module DevExpress.common.data { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface AbstractStoreOptions - extends StoreOptions { + export interface AbstractStoreOptions< + TItem = any, + TKey = any + > extends StoreOptions { /** * [descr:StoreOptions.onLoaded] */ @@ -7551,9 +7560,8 @@ declare module DevExpress.core.utils { * [descr:DxPromise] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export type DxPromise = {} extends PromiseType - ? Promise - : PromiseType; + export type DxPromise = + {} extends PromiseType ? Promise : PromiseType; } declare module DevExpress.data { /** @@ -8555,8 +8563,7 @@ declare module DevExpress.fileManagement { * @deprecated [depNote:CustomFileSystemProviderOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface CustomFileSystemProviderOptions - extends FileSystemProviderBaseOptions { + export interface CustomFileSystemProviderOptions extends FileSystemProviderBaseOptions { /** * [descr:CustomFileSystemProviderOptions.abortFileUpload] */ @@ -8847,8 +8854,7 @@ declare module DevExpress.fileManagement { * @deprecated [depNote:ObjectFileSystemProviderOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface ObjectFileSystemProviderOptions - extends FileSystemProviderBaseOptions { + export interface ObjectFileSystemProviderOptions extends FileSystemProviderBaseOptions { /** * [descr:ObjectFileSystemProviderOptions.contentExpr] */ @@ -8880,8 +8886,7 @@ declare module DevExpress.fileManagement { * @deprecated [depNote:RemoteFileSystemProviderOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface RemoteFileSystemProviderOptions - extends FileSystemProviderBaseOptions { + export interface RemoteFileSystemProviderOptions extends FileSystemProviderBaseOptions { /** * [descr:RemoteFileSystemProviderOptions.beforeAjaxSend] */ @@ -9220,7 +9225,8 @@ declare module DevExpress.ui { * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ export class DateBoxBase< - TProperties extends DevExpress.ui.Editor.EditorOptionsWithValue = DevExpress.ui.dxDateBox.Properties + TProperties extends DevExpress.ui.Editor.EditorOptionsWithValue = + DevExpress.ui.dxDateBox.Properties > extends dxDropDownEditor { /** * [descr:DateBoxBase.close()] @@ -9235,8 +9241,10 @@ declare module DevExpress.ui { * [descr:DateBoxBaseOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface DateBoxBaseOptions - extends Omit, 'fieldAddons'> { + export interface DateBoxBaseOptions extends Omit< + dxDropDownEditorOptions, + 'fieldAddons' + > { /** * [descr:DateBoxBaseOptions.applyButtonText] */ @@ -9298,8 +9306,9 @@ declare module DevExpress.ui { * [descr:DraggableBaseOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface DraggableBaseOptions - extends DOMComponentOptions { + export interface DraggableBaseOptions< + TComponent + > extends DOMComponentOptions { /** * [descr:DraggableBaseOptions.autoScroll] */ @@ -9938,8 +9947,7 @@ declare module DevExpress.ui { * @deprecated [depNote:dxAutocompleteOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxAutocompleteOptions - extends dxDropDownListOptions { + export interface dxAutocompleteOptions extends dxDropDownListOptions { /** * [descr:dxAutocompleteOptions.maxItemCount] */ @@ -11151,8 +11159,10 @@ declare module DevExpress.ui { * [descr:dxCardViewOptions] * @deprecated [depNote:dxCardViewOptions] */ - export interface dxCardViewOptions - extends Omit, 'onOptionChanged'> { + export interface dxCardViewOptions< + TCardData = unknown, + TKey = unknown + > extends Omit, 'onOptionChanged'> { /** * [descr:dxCardViewOptions.dataSource] */ @@ -12103,8 +12113,7 @@ declare module DevExpress.ui { * @deprecated [depNote:dxColorBoxOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxColorBoxOptions - extends dxDropDownEditorOptions { + export interface dxColorBoxOptions extends dxDropDownEditorOptions { /** * [descr:dxColorBoxOptions.applyButtonText] */ @@ -14391,8 +14400,10 @@ declare module DevExpress.ui { * @deprecated Use the DevExpress.ui.dxDataGrid.Column type instead * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxDataGridColumn - extends DevExpress.ui.dxDataGrid.ColumnBase { + export interface dxDataGridColumn< + TRowData = any, + TKey = any + > extends DevExpress.ui.dxDataGrid.ColumnBase { /** * [descr:dxDataGridColumn.allowExporting] */ @@ -16666,8 +16677,7 @@ declare module DevExpress.ui { * @deprecated [depNote:dxDraggableOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxDraggableOptions - extends DraggableBaseOptions { + export interface dxDraggableOptions extends DraggableBaseOptions { /** * [descr:dxDraggableOptions.clone] */ @@ -16935,7 +16945,8 @@ declare module DevExpress.ui { * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ export interface dxDropDownBoxOptions - extends DataExpressionMixinOptions, + extends + DataExpressionMixinOptions, dxDropDownEditorOptions { /** * [descr:dxDropDownBoxOptions.acceptCustomValue] @@ -17094,8 +17105,7 @@ declare module DevExpress.ui { * @deprecated [depNote:dxDropDownButtonOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxDropDownButtonOptions - extends WidgetOptions { + export interface dxDropDownButtonOptions extends WidgetOptions { /** * [descr:dxDropDownButtonOptions.dataSource] */ @@ -17239,7 +17249,8 @@ declare module DevExpress.ui { * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ export class dxDropDownEditor< - TProperties extends DevExpress.ui.Editor.EditorOptionsWithValue = DevExpress.ui.dxDropDownEditor.Properties + TProperties extends DevExpress.ui.Editor.EditorOptionsWithValue = + DevExpress.ui.dxDropDownEditor.Properties > extends dxTextBox { /** * [descr:dxDropDownEditor.close()] @@ -17284,8 +17295,10 @@ declare module DevExpress.ui { * [descr:dxDropDownEditorOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxDropDownEditorOptions - extends Omit, 'validationMessagePosition'> { + export interface dxDropDownEditorOptions extends Omit< + dxTextBoxOptions, + 'validationMessagePosition' + > { /** * [descr:dxDropDownEditorOptions.acceptCustomValue] */ @@ -17391,7 +17404,8 @@ declare module DevExpress.ui { * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ export interface dxDropDownListOptions - extends DataExpressionMixinOptions, + extends + DataExpressionMixinOptions, Omit, 'fieldAddons'> { /** * [descr:dxDropDownListOptions.displayValue] @@ -19128,8 +19142,7 @@ declare module DevExpress.ui { * @deprecated [depNote:dxFilterBuilderOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxFilterBuilderOptions - extends WidgetOptions { + export interface dxFilterBuilderOptions extends WidgetOptions { /** * [descr:dxFilterBuilderOptions.allowHierarchicalFields] */ @@ -20824,8 +20837,10 @@ declare module DevExpress.ui { * [descr:dxGanttColumn] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - interface dxGanttColumnBlank - extends Omit, 'ai'> { + interface dxGanttColumnBlank extends Omit< + DevExpress.ui.dxTreeList.Column, + 'ai' + > { /** * [descr:dxGanttColumn.allowEditing] */ @@ -22656,7 +22671,9 @@ declare module DevExpress.ui { export interface dxListOptions< TItem extends DevExpress.ui.dxList.ItemLike = any, TKey = any - > extends CollectionWidgetOptions, TItem, TKey>, + > + extends + CollectionWidgetOptions, TItem, TKey>, SearchBoxMixinOptions { /** * [descr:dxListOptions.activeStateEnabled] @@ -22919,8 +22936,7 @@ declare module DevExpress.ui { * @deprecated [depNote:dxLoadIndicatorOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxLoadIndicatorOptions - extends WidgetOptions { + export interface dxLoadIndicatorOptions extends WidgetOptions { /** * [descr:dxLoadIndicatorOptions.animationType] */ @@ -23862,9 +23878,9 @@ declare module DevExpress.ui { TItem extends DevExpress.ui.dxMenuBase.ItemLike = any, TKey = any > extends Omit< - HierarchicalCollectionWidgetOptions, - 'dataSource' - > { + HierarchicalCollectionWidgetOptions, + 'dataSource' + > { /** * [descr:dxMenuBaseOptions.activeStateEnabled] */ @@ -24413,8 +24429,9 @@ declare module DevExpress.ui { * [descr:dxOverlayOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxOverlayOptions - extends WidgetOptions { + export interface dxOverlayOptions< + TComponent + > extends WidgetOptions { /** * [descr:dxOverlayOptions.animation] */ @@ -24533,8 +24550,7 @@ declare module DevExpress.ui { * @deprecated [depNote:dxPaginationOptions] */ export interface dxPaginationOptions - extends DevExpress.common.PagerBase, - WidgetOptions { + extends DevExpress.common.PagerBase, WidgetOptions { /** * [descr:dxPaginationOptions.pageIndex] */ @@ -24813,8 +24829,7 @@ declare module DevExpress.ui { * @deprecated [depNote:dxPivotGridFieldChooserOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxPivotGridFieldChooserOptions - extends WidgetOptions { + export interface dxPivotGridFieldChooserOptions extends WidgetOptions { /** * [descr:dxPivotGridFieldChooserOptions.allowSearch] */ @@ -25550,8 +25565,9 @@ declare module DevExpress.ui { * @deprecated [depNote:dxPopoverOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxPopoverOptions - extends dxPopupOptions { + export interface dxPopoverOptions< + TComponent + > extends dxPopupOptions { /** * [descr:dxPopoverOptions.animation] */ @@ -25700,8 +25716,9 @@ declare module DevExpress.ui { * @deprecated [depNote:dxPopupOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxPopupOptions - extends dxOverlayOptions { + export interface dxPopupOptions< + TComponent + > extends dxOverlayOptions { /** * [descr:dxPopupOptions.animation] */ @@ -25860,8 +25877,7 @@ declare module DevExpress.ui { * @deprecated [depNote:dxProgressBarOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxProgressBarOptions - extends dxTrackBarOptions { + export interface dxProgressBarOptions extends dxTrackBarOptions { /** * [descr:dxProgressBarOptions.onComplete] */ @@ -25926,7 +25942,8 @@ declare module DevExpress.ui { * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ export interface dxRadioGroupOptions - extends EditorOptions, + extends + EditorOptions, DataExpressionMixinOptions { /** * [descr:dxRadioGroupOptions.activeStateEnabled] @@ -26013,8 +26030,7 @@ declare module DevExpress.ui { * @deprecated [depNote:dxRangeSliderOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxRangeSliderOptions - extends dxSliderBaseOptions { + export interface dxRangeSliderOptions extends dxSliderBaseOptions { /** * [descr:dxRangeSliderOptions.end] */ @@ -27651,11 +27667,8 @@ declare module DevExpress.ui { * [descr:ScrollEventInfo] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface ScrollEventInfo - extends DevExpress.common.core.events.NativeEventInfo< - T, - WheelEvent | MouseEvent | Event - > { + export interface ScrollEventInfo extends DevExpress.common.core.events + .NativeEventInfo { /** * [descr:ScrollEventInfo.scrollOffset] */ @@ -27682,8 +27695,9 @@ declare module DevExpress.ui { * [descr:dxScrollableOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxScrollableOptions - extends DOMComponentOptions { + export interface dxScrollableOptions< + TComponent + > extends DOMComponentOptions { /** * [descr:dxScrollableOptions.bounceEnabled] */ @@ -27784,8 +27798,7 @@ declare module DevExpress.ui { * @deprecated [depNote:dxScrollViewOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxScrollViewOptions - extends dxScrollableOptions { + export interface dxScrollViewOptions extends dxScrollableOptions { /** * [descr:dxScrollViewOptions.onPullDown] */ @@ -27819,7 +27832,8 @@ declare module DevExpress.ui { * [descr:dxSelectBox] */ export class dxSelectBox< - TProperties extends DevExpress.ui.Editor.EditorOptionsWithValue = DevExpress.ui.dxSelectBox.Properties + TProperties extends DevExpress.ui.Editor.EditorOptionsWithValue = + DevExpress.ui.dxSelectBox.Properties > extends dxDropDownList {} module dxSelectBox { /** @@ -27983,8 +27997,9 @@ declare module DevExpress.ui { * @deprecated [depNote:dxSelectBoxOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxSelectBoxOptions - extends dxDropDownListOptions { + export interface dxSelectBoxOptions< + TComponent + > extends dxDropDownListOptions { /** * [descr:dxSelectBoxOptions.acceptCustomValue] */ @@ -28087,8 +28102,9 @@ declare module DevExpress.ui { * [descr:dxSliderBaseOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxSliderBaseOptions - extends dxTrackBarOptions { + export interface dxSliderBaseOptions< + TComponent + > extends dxTrackBarOptions { /** * [descr:dxSliderBaseOptions.activeStateEnabled] */ @@ -28795,8 +28811,7 @@ declare module DevExpress.ui { * @deprecated [depNote:dxSpeedDialActionOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxSpeedDialActionOptions - extends WidgetOptions { + export interface dxSpeedDialActionOptions extends WidgetOptions { /** * [descr:dxSpeedDialActionOptions.icon] */ @@ -29968,11 +29983,10 @@ declare module DevExpress.ui { * @deprecated [depNote:dxTagBoxOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxTagBoxOptions - extends Pick< - dxSelectBoxOptions, - Exclude, 'onSelectionChanged'> - > { + export interface dxTagBoxOptions extends Pick< + dxSelectBoxOptions, + Exclude, 'onSelectionChanged'> + > { /** * [descr:dxTagBoxOptions.applyValueMode] */ @@ -30183,7 +30197,8 @@ declare module DevExpress.ui { * [descr:dxTextBox] */ export class dxTextBox< - TProperties extends DevExpress.ui.Editor.EditorOptionsWithValue = DevExpress.ui.dxTextBox.Properties + TProperties extends DevExpress.ui.Editor.EditorOptionsWithValue = + DevExpress.ui.dxTextBox.Properties > extends dxTextEditor { /** * [descr:dxTextBox.reset(value)] @@ -30313,8 +30328,9 @@ declare module DevExpress.ui { * @deprecated [depNote:dxTextBoxOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxTextBoxOptions - extends dxTextEditorOptions { + export interface dxTextBoxOptions< + TComponent + > extends dxTextEditorOptions { /** * [descr:dxTextBoxOptions.maxLength] */ @@ -30333,7 +30349,8 @@ declare module DevExpress.ui { * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ export class dxTextEditor< - TProperties extends DevExpress.ui.Editor.EditorOptionsWithValue = DevExpress.ui.dxTextEditor.Properties + TProperties extends DevExpress.ui.Editor.EditorOptionsWithValue = + DevExpress.ui.dxTextEditor.Properties > extends Editor { /** * [descr:dxTextEditor.blur()] @@ -30362,8 +30379,9 @@ declare module DevExpress.ui { * [descr:dxTextEditorOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxTextEditorOptions - extends EditorOptions { + export interface dxTextEditorOptions< + TComponent + > extends EditorOptions { /** * [descr:dxTextEditorOptions.buttons] */ @@ -31088,8 +31106,9 @@ declare module DevExpress.ui { * [descr:dxTrackBarOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxTrackBarOptions - extends EditorOptions { + export interface dxTrackBarOptions< + TComponent + > extends EditorOptions { /** * [descr:dxTrackBarOptions.max] */ @@ -31585,8 +31604,8 @@ declare module DevExpress.ui { /** * [descr:dxTreeListEditing] */ - export interface Editing - extends DevExpress.common.grids.EditingBase { + export interface Editing extends DevExpress + .common.grids.EditingBase { /** * [descr:dxTreeListOptions.editing.allowAdding] */ @@ -32524,8 +32543,10 @@ declare module DevExpress.ui { * @deprecated Use the DevExpress.ui.dxTreeList.Column type instead * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxTreeListColumn - extends DevExpress.common.grids.ColumnBase { + export interface dxTreeListColumn< + TRowData = any, + TKey = any + > extends DevExpress.common.grids.ColumnBase { /** * [descr:dxTreeListColumn.buttons] */ @@ -33241,7 +33262,9 @@ declare module DevExpress.ui { export interface dxTreeViewOptions< TItem extends DevExpress.ui.dxTreeView.ItemLike = any, TKey = any - > extends Omit< + > + extends + Omit< HierarchicalCollectionWidgetOptions< dxTreeView, TItem, @@ -33447,8 +33470,7 @@ declare module DevExpress.ui { * @deprecated [depNote:dxValidationGroupOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxValidationGroupOptions - extends DOMComponentOptions {} + export interface dxValidationGroupOptions extends DOMComponentOptions {} /** * [descr:dxValidationGroupResult] * @deprecated [depNote:dxValidationGroupResult] @@ -33496,8 +33518,7 @@ declare module DevExpress.ui { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxValidationMessageOptions - extends dxOverlayOptions { + export interface dxValidationMessageOptions extends dxOverlayOptions { mode?: string; validationErrors?: Array | null; @@ -33597,10 +33618,10 @@ declare module DevExpress.ui { TItem extends DevExpress.ui.CollectionWidget.ItemLike = any, TKey = any > extends CollectionWidgetOptions< - dxValidationSummary, - TItem, - TKey - > { + dxValidationSummary, + TItem, + TKey + > { /** * [descr:dxValidationSummaryOptions.validationGroup] */ @@ -33774,7 +33795,8 @@ declare module DevExpress.ui { * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ export class Editor< - TProperties extends DevExpress.ui.Editor.EditorOptionsWithValue = DevExpress.ui.Editor.Properties + TProperties extends DevExpress.ui.Editor.EditorOptionsWithValue = + DevExpress.ui.Editor.Properties > extends Widget { /** * [descr:Editor.clear()] @@ -34133,8 +34155,9 @@ declare module DevExpress.ui { * [descr:WidgetOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface WidgetOptions - extends DOMComponentOptions { + export interface WidgetOptions< + TComponent + > extends DOMComponentOptions { /** * [descr:WidgetOptions.accessKey] */ @@ -35140,16 +35163,10 @@ declare module DevExpress.ui.dxHtmlEditor { /** * [descr:AIToolbarItem] */ - export interface AIToolbarItem - extends Omit< - DevExpress.ui.dxToolbar.Item, - | 'menuItemTemplate' - | 'showText' - | 'widget' - | 'options' - | 'template' - | 'html' - > { + export interface AIToolbarItem extends Omit< + DevExpress.ui.dxToolbar.Item, + 'menuItemTemplate' | 'showText' | 'widget' | 'options' | 'template' | 'html' + > { /** * [descr:AIToolbarItem.name] */ @@ -35484,8 +35501,7 @@ declare module DevExpress.viz { * [descr:BaseChartAnnotationConfig] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface BaseChartAnnotationConfig - extends BaseWidgetAnnotationConfig { + export interface BaseChartAnnotationConfig extends BaseWidgetAnnotationConfig { /** * [descr:BaseChartAnnotationConfig.argument] */ @@ -35648,8 +35664,9 @@ declare module DevExpress.viz { * [descr:BaseChartTooltip] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface BaseChartTooltip - extends BaseWidgetTooltip { + export interface BaseChartTooltip< + TPointInfo = any + > extends BaseWidgetTooltip { /** * [descr:BaseChartOptions.tooltip.argumentFormat] */ @@ -35743,8 +35760,7 @@ declare module DevExpress.viz { * [descr:BaseGaugeLoadingIndicator] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface BaseGaugeLoadingIndicator - extends BaseWidgetLoadingIndicator { + export interface BaseGaugeLoadingIndicator extends BaseWidgetLoadingIndicator { /** * [descr:BaseGaugeOptions.loadingIndicator.enabled] */ @@ -35754,8 +35770,9 @@ declare module DevExpress.viz { * [descr:BaseGaugeOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface BaseGaugeOptions - extends BaseWidgetOptions { + export interface BaseGaugeOptions< + TComponent + > extends BaseWidgetOptions { /** * [descr:BaseGaugeOptions.animation] */ @@ -36255,8 +36272,9 @@ declare module DevExpress.viz { * [descr:BaseSparklineOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface BaseSparklineOptions - extends BaseWidgetOptions { + export interface BaseSparklineOptions< + TComponent + > extends BaseWidgetOptions { /** * [descr:BaseSparklineOptions.export] */ @@ -36663,8 +36681,9 @@ declare module DevExpress.viz { * [descr:BaseWidgetOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface BaseWidgetOptions - extends DOMComponentOptions { + export interface BaseWidgetOptions< + TComponent + > extends DOMComponentOptions { /** * [descr:BaseWidgetOptions.disabled] */ @@ -39147,8 +39166,7 @@ declare module DevExpress.viz { * [descr:dxChartAnnotationConfig] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartAnnotationConfig - extends dxChartCommonAnnotationConfig { + export interface dxChartAnnotationConfig extends dxChartCommonAnnotationConfig { /** * [descr:dxChartAnnotationConfig.name] */ @@ -39158,8 +39176,7 @@ declare module DevExpress.viz { * [descr:dxChartCommonAnnotationConfig] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartCommonAnnotationConfig - extends BaseChartAnnotationConfig { + export interface dxChartCommonAnnotationConfig extends BaseChartAnnotationConfig { /** * [descr:dxChartCommonAnnotationConfig.axis] */ @@ -39196,8 +39213,10 @@ declare module DevExpress.viz { * @deprecated [depNote:dxChartOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartOptions - extends BaseChartOptions { + export interface dxChartOptions extends BaseChartOptions< + dxChart, + chartPointObject + > { /** * [descr:dxChartOptions.adjustOnZoom] */ @@ -39726,8 +39745,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesAreaSeries - extends dxChartSeriesTypesCommonSeries { + export interface dxChartSeriesTypesAreaSeries extends dxChartSeriesTypesCommonSeries { /** * [descr:dxChartSeriesTypes.AreaSeries.aggregation] */ @@ -39752,8 +39770,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesAreaSeriesAggregation - extends dxChartSeriesTypesCommonSeriesAggregation { + export interface dxChartSeriesTypesAreaSeriesAggregation extends dxChartSeriesTypesCommonSeriesAggregation { /** * [descr:dxChartSeriesTypes.AreaSeries.aggregation.method] */ @@ -39782,8 +39799,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesBarSeries - extends dxChartSeriesTypesCommonSeries { + export interface dxChartSeriesTypesBarSeries extends dxChartSeriesTypesCommonSeries { /** * [descr:dxChartSeriesTypes.BarSeries.aggregation] */ @@ -39808,8 +39824,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesBarSeriesAggregation - extends dxChartSeriesTypesCommonSeriesAggregation { + export interface dxChartSeriesTypesBarSeriesAggregation extends dxChartSeriesTypesCommonSeriesAggregation { /** * [descr:dxChartSeriesTypes.BarSeries.aggregation.method] */ @@ -39828,8 +39843,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesBubbleSeries - extends dxChartSeriesTypesCommonSeries { + export interface dxChartSeriesTypesBubbleSeries extends dxChartSeriesTypesCommonSeries { /** * [descr:dxChartSeriesTypes.BubbleSeries.aggregation] */ @@ -39854,8 +39868,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesBubbleSeriesAggregation - extends dxChartSeriesTypesCommonSeriesAggregation { + export interface dxChartSeriesTypesBubbleSeriesAggregation extends dxChartSeriesTypesCommonSeriesAggregation { /** * [descr:dxChartSeriesTypes.BubbleSeries.aggregation.method] */ @@ -39874,8 +39887,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesCandleStickSeries - extends dxChartSeriesTypesCommonSeries { + export interface dxChartSeriesTypesCandleStickSeries extends dxChartSeriesTypesCommonSeries { /** * [descr:dxChartSeriesTypes.CandleStickSeries.aggregation] */ @@ -39912,8 +39924,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesCandleStickSeriesAggregation - extends dxChartSeriesTypesCommonSeriesAggregation { + export interface dxChartSeriesTypesCandleStickSeriesAggregation extends dxChartSeriesTypesCommonSeriesAggregation { /** * [descr:dxChartSeriesTypes.CandleStickSeries.aggregation.method] */ @@ -39922,8 +39933,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesCandleStickSeriesHoverStyle - extends dxChartSeriesTypesCommonSeriesHoverStyle { + export interface dxChartSeriesTypesCandleStickSeriesHoverStyle extends dxChartSeriesTypesCommonSeriesHoverStyle { /** * [descr:dxChartSeriesTypes.CandleStickSeries.hoverStyle.hatching] */ @@ -39932,8 +39942,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesCandleStickSeriesHoverStyleHatching - extends dxChartSeriesTypesCommonSeriesHoverStyleHatching { + export interface dxChartSeriesTypesCandleStickSeriesHoverStyleHatching extends dxChartSeriesTypesCommonSeriesHoverStyleHatching { /** * [descr:dxChartSeriesTypes.CandleStickSeries.hoverStyle.hatching.direction] */ @@ -39952,8 +39961,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesCandleStickSeriesSelectionStyle - extends dxChartSeriesTypesCommonSeriesSelectionStyle { + export interface dxChartSeriesTypesCandleStickSeriesSelectionStyle extends dxChartSeriesTypesCommonSeriesSelectionStyle { /** * [descr:dxChartSeriesTypes.CandleStickSeries.selectionStyle.hatching] */ @@ -39962,8 +39970,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesCandleStickSeriesSelectionStyleHatching - extends dxChartSeriesTypesCommonSeriesSelectionStyleHatching { + export interface dxChartSeriesTypesCandleStickSeriesSelectionStyleHatching extends dxChartSeriesTypesCommonSeriesSelectionStyleHatching { /** * [descr:dxChartSeriesTypes.CandleStickSeries.selectionStyle.hatching.direction] */ @@ -40356,8 +40363,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesFullStackedAreaSeries - extends dxChartSeriesTypesCommonSeries { + export interface dxChartSeriesTypesFullStackedAreaSeries extends dxChartSeriesTypesCommonSeries { /** * [descr:dxChartSeriesTypes.FullStackedAreaSeries.aggregation] */ @@ -40382,8 +40388,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesFullStackedAreaSeriesAggregation - extends dxChartSeriesTypesCommonSeriesAggregation { + export interface dxChartSeriesTypesFullStackedAreaSeriesAggregation extends dxChartSeriesTypesCommonSeriesAggregation { /** * [descr:dxChartSeriesTypes.FullStackedAreaSeries.aggregation.method] */ @@ -40412,8 +40417,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesFullStackedBarSeries - extends dxChartSeriesTypesCommonSeries { + export interface dxChartSeriesTypesFullStackedBarSeries extends dxChartSeriesTypesCommonSeries { /** * [descr:dxChartSeriesTypes.FullStackedBarSeries.aggregation] */ @@ -40438,8 +40442,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesFullStackedBarSeriesAggregation - extends dxChartSeriesTypesCommonSeriesAggregation { + export interface dxChartSeriesTypesFullStackedBarSeriesAggregation extends dxChartSeriesTypesCommonSeriesAggregation { /** * [descr:dxChartSeriesTypes.FullStackedBarSeries.aggregation.method] */ @@ -40462,8 +40465,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesFullStackedLineSeries - extends dxChartSeriesTypesCommonSeries { + export interface dxChartSeriesTypesFullStackedLineSeries extends dxChartSeriesTypesCommonSeries { /** * [descr:dxChartSeriesTypes.FullStackedLineSeries.aggregation] */ @@ -40484,8 +40486,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesFullStackedLineSeriesAggregation - extends dxChartSeriesTypesCommonSeriesAggregation { + export interface dxChartSeriesTypesFullStackedLineSeriesAggregation extends dxChartSeriesTypesCommonSeriesAggregation { /** * [descr:dxChartSeriesTypes.FullStackedLineSeries.aggregation.method] */ @@ -40504,8 +40505,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesFullStackedSplineAreaSeries - extends dxChartSeriesTypesCommonSeries { + export interface dxChartSeriesTypesFullStackedSplineAreaSeries extends dxChartSeriesTypesCommonSeries { /** * [descr:dxChartSeriesTypes.FullStackedSplineAreaSeries.aggregation] */ @@ -40530,8 +40530,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesFullStackedSplineAreaSeriesAggregation - extends dxChartSeriesTypesCommonSeriesAggregation { + export interface dxChartSeriesTypesFullStackedSplineAreaSeriesAggregation extends dxChartSeriesTypesCommonSeriesAggregation { /** * [descr:dxChartSeriesTypes.FullStackedSplineAreaSeries.aggregation.method] */ @@ -40560,8 +40559,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesFullStackedSplineSeries - extends dxChartSeriesTypesCommonSeries { + export interface dxChartSeriesTypesFullStackedSplineSeries extends dxChartSeriesTypesCommonSeries { /** * [descr:dxChartSeriesTypes.FullStackedSplineSeries.aggregation] */ @@ -40582,8 +40580,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesFullStackedSplineSeriesAggregation - extends dxChartSeriesTypesCommonSeriesAggregation { + export interface dxChartSeriesTypesFullStackedSplineSeriesAggregation extends dxChartSeriesTypesCommonSeriesAggregation { /** * [descr:dxChartSeriesTypes.FullStackedSplineSeries.aggregation.method] */ @@ -40602,8 +40599,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesLineSeries - extends dxChartSeriesTypesCommonSeries { + export interface dxChartSeriesTypesLineSeries extends dxChartSeriesTypesCommonSeries { /** * [descr:dxChartSeriesTypes.LineSeries.aggregation] */ @@ -40624,8 +40620,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesLineSeriesAggregation - extends dxChartSeriesTypesCommonSeriesAggregation { + export interface dxChartSeriesTypesLineSeriesAggregation extends dxChartSeriesTypesCommonSeriesAggregation { /** * [descr:dxChartSeriesTypes.LineSeries.aggregation.method] */ @@ -40644,8 +40639,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesRangeAreaSeries - extends dxChartSeriesTypesCommonSeries { + export interface dxChartSeriesTypesRangeAreaSeries extends dxChartSeriesTypesCommonSeries { /** * [descr:dxChartSeriesTypes.RangeAreaSeries.aggregation] */ @@ -40670,8 +40664,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesRangeAreaSeriesAggregation - extends dxChartSeriesTypesCommonSeriesAggregation { + export interface dxChartSeriesTypesRangeAreaSeriesAggregation extends dxChartSeriesTypesCommonSeriesAggregation { /** * [descr:dxChartSeriesTypes.RangeAreaSeries.aggregation.method] */ @@ -40700,8 +40693,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesRangeBarSeries - extends dxChartSeriesTypesCommonSeries { + export interface dxChartSeriesTypesRangeBarSeries extends dxChartSeriesTypesCommonSeries { /** * [descr:dxChartSeriesTypes.RangeBarSeries.aggregation] */ @@ -40726,8 +40718,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesRangeBarSeriesAggregation - extends dxChartSeriesTypesCommonSeriesAggregation { + export interface dxChartSeriesTypesRangeBarSeriesAggregation extends dxChartSeriesTypesCommonSeriesAggregation { /** * [descr:dxChartSeriesTypes.RangeBarSeries.aggregation.method] */ @@ -40746,8 +40737,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesScatterSeries - extends dxChartSeriesTypesCommonSeries { + export interface dxChartSeriesTypesScatterSeries extends dxChartSeriesTypesCommonSeries { /** * [descr:dxChartSeriesTypes.ScatterSeries.aggregation] */ @@ -40760,8 +40750,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesScatterSeriesAggregation - extends dxChartSeriesTypesCommonSeriesAggregation { + export interface dxChartSeriesTypesScatterSeriesAggregation extends dxChartSeriesTypesCommonSeriesAggregation { /** * [descr:dxChartSeriesTypes.ScatterSeries.aggregation.method] */ @@ -40780,8 +40769,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesSplineAreaSeries - extends dxChartSeriesTypesCommonSeries { + export interface dxChartSeriesTypesSplineAreaSeries extends dxChartSeriesTypesCommonSeries { /** * [descr:dxChartSeriesTypes.SplineAreaSeries.aggregation] */ @@ -40806,8 +40794,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesSplineAreaSeriesAggregation - extends dxChartSeriesTypesCommonSeriesAggregation { + export interface dxChartSeriesTypesSplineAreaSeriesAggregation extends dxChartSeriesTypesCommonSeriesAggregation { /** * [descr:dxChartSeriesTypes.SplineAreaSeries.aggregation.method] */ @@ -40836,8 +40823,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesSplineSeries - extends dxChartSeriesTypesCommonSeries { + export interface dxChartSeriesTypesSplineSeries extends dxChartSeriesTypesCommonSeries { /** * [descr:dxChartSeriesTypes.SplineSeries.aggregation] */ @@ -40858,8 +40844,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesSplineSeriesAggregation - extends dxChartSeriesTypesCommonSeriesAggregation { + export interface dxChartSeriesTypesSplineSeriesAggregation extends dxChartSeriesTypesCommonSeriesAggregation { /** * [descr:dxChartSeriesTypes.SplineSeries.aggregation.method] */ @@ -40878,8 +40863,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesStackedAreaSeries - extends dxChartSeriesTypesCommonSeries { + export interface dxChartSeriesTypesStackedAreaSeries extends dxChartSeriesTypesCommonSeries { /** * [descr:dxChartSeriesTypes.StackedAreaSeries.aggregation] */ @@ -40904,8 +40888,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesStackedAreaSeriesAggregation - extends dxChartSeriesTypesCommonSeriesAggregation { + export interface dxChartSeriesTypesStackedAreaSeriesAggregation extends dxChartSeriesTypesCommonSeriesAggregation { /** * [descr:dxChartSeriesTypes.StackedAreaSeries.aggregation.method] */ @@ -40934,8 +40917,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesStackedBarSeries - extends dxChartSeriesTypesCommonSeries { + export interface dxChartSeriesTypesStackedBarSeries extends dxChartSeriesTypesCommonSeries { /** * [descr:dxChartSeriesTypes.StackedBarSeries.aggregation] */ @@ -40960,8 +40942,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesStackedBarSeriesAggregation - extends dxChartSeriesTypesCommonSeriesAggregation { + export interface dxChartSeriesTypesStackedBarSeriesAggregation extends dxChartSeriesTypesCommonSeriesAggregation { /** * [descr:dxChartSeriesTypes.StackedBarSeries.aggregation.method] */ @@ -40984,8 +40965,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesStackedLineSeries - extends dxChartSeriesTypesCommonSeries { + export interface dxChartSeriesTypesStackedLineSeries extends dxChartSeriesTypesCommonSeries { /** * [descr:dxChartSeriesTypes.StackedLineSeries.aggregation] */ @@ -41006,8 +40986,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesStackedLineSeriesAggregation - extends dxChartSeriesTypesCommonSeriesAggregation { + export interface dxChartSeriesTypesStackedLineSeriesAggregation extends dxChartSeriesTypesCommonSeriesAggregation { /** * [descr:dxChartSeriesTypes.StackedLineSeries.aggregation.method] */ @@ -41026,8 +41005,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesStackedSplineAreaSeries - extends dxChartSeriesTypesCommonSeries { + export interface dxChartSeriesTypesStackedSplineAreaSeries extends dxChartSeriesTypesCommonSeries { /** * [descr:dxChartSeriesTypes.StackedSplineAreaSeries.aggregation] */ @@ -41052,8 +41030,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesStackedSplineAreaSeriesAggregation - extends dxChartSeriesTypesCommonSeriesAggregation { + export interface dxChartSeriesTypesStackedSplineAreaSeriesAggregation extends dxChartSeriesTypesCommonSeriesAggregation { /** * [descr:dxChartSeriesTypes.StackedSplineAreaSeries.aggregation.method] */ @@ -41082,8 +41059,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesStackedSplineSeries - extends dxChartSeriesTypesCommonSeries { + export interface dxChartSeriesTypesStackedSplineSeries extends dxChartSeriesTypesCommonSeries { /** * [descr:dxChartSeriesTypes.StackedSplineSeries.aggregation] */ @@ -41104,8 +41080,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesStackedSplineSeriesAggregation - extends dxChartSeriesTypesCommonSeriesAggregation { + export interface dxChartSeriesTypesStackedSplineSeriesAggregation extends dxChartSeriesTypesCommonSeriesAggregation { /** * [descr:dxChartSeriesTypes.StackedSplineSeries.aggregation.method] */ @@ -41124,8 +41099,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesStepAreaSeries - extends dxChartSeriesTypesCommonSeries { + export interface dxChartSeriesTypesStepAreaSeries extends dxChartSeriesTypesCommonSeries { /** * [descr:dxChartSeriesTypes.StepAreaSeries.aggregation] */ @@ -41162,8 +41136,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesStepAreaSeriesAggregation - extends dxChartSeriesTypesCommonSeriesAggregation { + export interface dxChartSeriesTypesStepAreaSeriesAggregation extends dxChartSeriesTypesCommonSeriesAggregation { /** * [descr:dxChartSeriesTypes.StepAreaSeries.aggregation.method] */ @@ -41172,8 +41145,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesStepAreaSeriesBorder - extends dxChartSeriesTypesCommonSeriesBorder { + export interface dxChartSeriesTypesStepAreaSeriesBorder extends dxChartSeriesTypesCommonSeriesBorder { /** * [descr:dxChartSeriesTypes.StepAreaSeries.border.visible] */ @@ -41182,8 +41154,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesStepAreaSeriesHoverStyle - extends dxChartSeriesTypesCommonSeriesHoverStyle { + export interface dxChartSeriesTypesStepAreaSeriesHoverStyle extends dxChartSeriesTypesCommonSeriesHoverStyle { /** * [descr:dxChartSeriesTypes.StepAreaSeries.hoverStyle.border] */ @@ -41192,8 +41163,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesStepAreaSeriesHoverStyleBorder - extends dxChartSeriesTypesCommonSeriesHoverStyleBorder { + export interface dxChartSeriesTypesStepAreaSeriesHoverStyleBorder extends dxChartSeriesTypesCommonSeriesHoverStyleBorder { /** * [descr:dxChartSeriesTypes.StepAreaSeries.hoverStyle.border.visible] */ @@ -41222,8 +41192,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesStepAreaSeriesSelectionStyle - extends dxChartSeriesTypesCommonSeriesSelectionStyle { + export interface dxChartSeriesTypesStepAreaSeriesSelectionStyle extends dxChartSeriesTypesCommonSeriesSelectionStyle { /** * [descr:dxChartSeriesTypes.StepAreaSeries.selectionStyle.border] */ @@ -41232,8 +41201,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesStepAreaSeriesSelectionStyleBorder - extends dxChartSeriesTypesCommonSeriesSelectionStyleBorder { + export interface dxChartSeriesTypesStepAreaSeriesSelectionStyleBorder extends dxChartSeriesTypesCommonSeriesSelectionStyleBorder { /** * [descr:dxChartSeriesTypes.StepAreaSeries.selectionStyle.border.visible] */ @@ -41242,8 +41210,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesStepLineSeries - extends dxChartSeriesTypesCommonSeries { + export interface dxChartSeriesTypesStepLineSeries extends dxChartSeriesTypesCommonSeries { /** * [descr:dxChartSeriesTypes.StepLineSeries.aggregation] */ @@ -41264,8 +41231,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesStepLineSeriesAggregation - extends dxChartSeriesTypesCommonSeriesAggregation { + export interface dxChartSeriesTypesStepLineSeriesAggregation extends dxChartSeriesTypesCommonSeriesAggregation { /** * [descr:dxChartSeriesTypes.StepLineSeries.aggregation.method] */ @@ -41284,8 +41250,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesStockSeries - extends dxChartSeriesTypesCommonSeries { + export interface dxChartSeriesTypesStockSeries extends dxChartSeriesTypesCommonSeries { /** * [descr:dxChartSeriesTypes.StockSeries.aggregation] */ @@ -41314,8 +41279,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxChartSeriesTypesStockSeriesAggregation - extends dxChartSeriesTypesCommonSeriesAggregation { + export interface dxChartSeriesTypesStockSeriesAggregation extends dxChartSeriesTypesCommonSeriesAggregation { /** * [descr:dxChartSeriesTypes.StockSeries.aggregation.method] */ @@ -41442,8 +41406,7 @@ declare module DevExpress.viz { * @deprecated [depNote:dxCircularGaugeOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxCircularGaugeOptions - extends BaseGaugeOptions { + export interface dxCircularGaugeOptions extends BaseGaugeOptions { /** * [descr:dxCircularGaugeOptions.geometry] */ @@ -42139,8 +42102,7 @@ declare module DevExpress.viz { * @deprecated [depNote:dxLinearGaugeOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxLinearGaugeOptions - extends BaseGaugeOptions { + export interface dxLinearGaugeOptions extends BaseGaugeOptions { /** * [descr:dxLinearGaugeOptions.geometry] */ @@ -42375,8 +42337,7 @@ declare module DevExpress.viz { * [descr:dxPieChartAnnotationConfig] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxPieChartAnnotationConfig - extends dxPieChartCommonAnnotationConfig { + export interface dxPieChartAnnotationConfig extends dxPieChartCommonAnnotationConfig { /** * [descr:dxPieChartAnnotationConfig.name] */ @@ -42386,8 +42347,7 @@ declare module DevExpress.viz { * [descr:dxPieChartCommonAnnotationConfig] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxPieChartCommonAnnotationConfig - extends BaseWidgetAnnotationConfig { + export interface dxPieChartCommonAnnotationConfig extends BaseWidgetAnnotationConfig { /** * [descr:dxPieChartCommonAnnotationConfig.location] */ @@ -42432,8 +42392,10 @@ declare module DevExpress.viz { * @deprecated [depNote:dxPieChartOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxPieChartOptions - extends BaseChartOptions { + export interface dxPieChartOptions extends BaseChartOptions< + dxPieChart, + piePointObject + > { /** * [descr:dxPieChartOptions.adaptiveLayout] */ @@ -43758,8 +43720,7 @@ declare module DevExpress.viz { * [descr:dxPolarChartAnnotationConfig] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxPolarChartAnnotationConfig - extends dxPolarChartCommonAnnotationConfig { + export interface dxPolarChartAnnotationConfig extends dxPolarChartCommonAnnotationConfig { /** * [descr:dxPolarChartAnnotationConfig.name] */ @@ -43769,8 +43730,7 @@ declare module DevExpress.viz { * [descr:dxPolarChartCommonAnnotationConfig] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxPolarChartCommonAnnotationConfig - extends BaseChartAnnotationConfig { + export interface dxPolarChartCommonAnnotationConfig extends BaseChartAnnotationConfig { /** * [descr:dxPolarChartCommonAnnotationConfig.angle] */ @@ -43811,8 +43771,10 @@ declare module DevExpress.viz { * @deprecated [depNote:dxPolarChartOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxPolarChartOptions - extends BaseChartOptions { + export interface dxPolarChartOptions extends BaseChartOptions< + dxPolarChart, + polarPointObject + > { /** * [descr:dxPolarChartOptions.adaptiveLayout] */ @@ -44003,8 +43965,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxPolarChartSeriesTypesAreapolarseries - extends dxPolarChartSeriesTypesCommonPolarChartSeries { + export interface dxPolarChartSeriesTypesAreapolarseries extends dxPolarChartSeriesTypesCommonPolarChartSeries { /** * [descr:dxPolarChartSeriesTypes.areapolarseries.hoverMode] */ @@ -44021,8 +43982,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxPolarChartSeriesTypesAreapolarseriesPoint - extends dxPolarChartSeriesTypesCommonPolarChartSeriesPoint { + export interface dxPolarChartSeriesTypesAreapolarseriesPoint extends dxPolarChartSeriesTypesCommonPolarChartSeriesPoint { /** * [descr:dxPolarChartSeriesTypes.areapolarseries.point.visible] */ @@ -44031,8 +43991,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxPolarChartSeriesTypesBarpolarseries - extends dxPolarChartSeriesTypesCommonPolarChartSeries { + export interface dxPolarChartSeriesTypesBarpolarseries extends dxPolarChartSeriesTypesCommonPolarChartSeries { /** * [descr:dxPolarChartSeriesTypes.barpolarseries.hoverMode] */ @@ -44531,8 +44490,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxPolarChartSeriesTypesLinepolarseries - extends dxPolarChartSeriesTypesCommonPolarChartSeries { + export interface dxPolarChartSeriesTypesLinepolarseries extends dxPolarChartSeriesTypesCommonPolarChartSeries { /** * [descr:dxPolarChartSeriesTypes.linepolarseries.hoverMode] */ @@ -44545,8 +44503,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxPolarChartSeriesTypesStackedbarpolarseries - extends dxPolarChartSeriesTypesCommonPolarChartSeries { + export interface dxPolarChartSeriesTypesStackedbarpolarseries extends dxPolarChartSeriesTypesCommonPolarChartSeries { /** * [descr:dxPolarChartSeriesTypes.stackedbarpolarseries.hoverMode] */ @@ -44567,8 +44524,7 @@ declare module DevExpress.viz { /** * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxPolarChartSeriesTypesStackedbarpolarseriesLabel - extends dxPolarChartSeriesTypesCommonPolarChartSeriesLabel { + export interface dxPolarChartSeriesTypesStackedbarpolarseriesLabel extends dxPolarChartSeriesTypesCommonPolarChartSeriesLabel { /** * [descr:dxPolarChartSeriesTypes.stackedbarpolarseries.label.position] */ @@ -44682,8 +44638,7 @@ declare module DevExpress.viz { * @deprecated [depNote:dxRangeSelectorOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxRangeSelectorOptions - extends BaseWidgetOptions { + export interface dxRangeSelectorOptions extends BaseWidgetOptions { /** * [descr:dxRangeSelectorOptions.background] */ @@ -45854,8 +45809,7 @@ declare module DevExpress.viz { * @deprecated [depNote:dxSparklineOptions] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxSparklineOptions - extends BaseSparklineOptions { + export interface dxSparklineOptions extends BaseSparklineOptions { /** * [descr:dxSparklineOptions.argumentField] */ @@ -46785,8 +46739,7 @@ declare module DevExpress.viz { * [descr:dxVectorMapAnnotationConfig] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxVectorMapAnnotationConfig - extends dxVectorMapCommonAnnotationConfig { + export interface dxVectorMapAnnotationConfig extends dxVectorMapCommonAnnotationConfig { /** * [descr:dxVectorMapAnnotationConfig.name] */ @@ -46796,8 +46749,7 @@ declare module DevExpress.viz { * [descr:dxVectorMapCommonAnnotationConfig] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface dxVectorMapCommonAnnotationConfig - extends BaseWidgetAnnotationConfig { + export interface dxVectorMapCommonAnnotationConfig extends BaseWidgetAnnotationConfig { /** * [descr:dxVectorMapCommonAnnotationConfig.coordinates] */ @@ -47349,8 +47301,7 @@ declare module DevExpress.viz { * [descr:PieChartSeries] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface PieChartSeries - extends dxPieChartSeriesTypesCommonPieChartSeries { + export interface PieChartSeries extends dxPieChartSeriesTypesCommonPieChartSeries { /** * [descr:PieChartSeries.name] */ @@ -47404,8 +47355,7 @@ declare module DevExpress.viz { * [descr:PolarChartSeries] * @deprecated Attention! This type is for internal purposes only. If you used it previously, please submit a ticket to our {@link https://supportcenter.devexpress.com/ticket/create Support Center}. We will check if there is an alternative solution. */ - export interface PolarChartSeries - extends dxPolarChartSeriesTypesCommonPolarChartSeries { + export interface PolarChartSeries extends dxPolarChartSeriesTypesCommonPolarChartSeries { /** * [descr:PolarChartSeries.name] */