UNPKG

@gooddata/react-components

Version:

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

13 lines (10 loc) 341 B
// (C) 2007-2018 GoodData Corporation import { VisualizationObject, Execution } from "@gooddata/typings"; export interface IIndexedTotalItem { alias?: string; type: VisualizationObject.TotalType; outputMeasureIndexes: number[]; } export interface ITotalWithData extends IIndexedTotalItem { values: Execution.DataValue[]; }