/** * DevExpress Analytics (widgets\common\displayNameProvider.d.ts) * Version: 25.2.7 * Build date: May 5, 2026 * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED * License: https://www.devexpress.com/Support/EULAs/universal.xml */ import { DxPromise } from '../../core/utils/_jqueryUtils'; export interface IDisplayExpressionConverter { toDisplayExpression(path: string, expression: string): DxPromise; toRealExpression(path: string, expression: string): DxPromise; } export interface IDisplayNameProvider { getDisplayNameByPath: (path: string, dataMember: string) => DxPromise; getRealName: (path: string, displayDataMember: string) => DxPromise; }