UNPKG

@gooddata/react-components

Version:

GoodData.UI - A powerful JavaScript library for building analytical applications

10 lines (9 loc) 301 B
import { VisualizationObject, Execution } from "@gooddata/typings"; export interface IIndexedTotalItem { alias?: string; type: VisualizationObject.TotalType; outputMeasureIndexes: number[]; } export interface ITotalWithData extends IIndexedTotalItem { values: Execution.DataValue[]; }