@gooddata/react-components
Version:
GoodData.UI - A powerful JavaScript library for building analytical applications
6 lines (5 loc) • 607 B
TypeScript
import { AFM, Execution } from "@gooddata/typings";
import { IGridHeader, IGridRow, IGridTotalsRow } from "./agGridTypes";
import { IntlShape } from "react-intl";
export declare const getRow: (cellData: (string | number)[], rowIndex: number, columnFields: string[], rowHeaders: IGridHeader[], rowHeaderData: Execution.IResultHeaderItem[][], subtotalStyles: string[], intl: IntlShape) => IGridRow;
export declare const getRowTotals: (totals: (string | number)[][][], columnKeys: string[], headers: Execution.IHeader[], resultSpec: AFM.IResultSpec, measureIds: string[], intl: IntlShape) => IGridTotalsRow[];