UNPKG

med-table

Version:
11 lines (10 loc) 480 B
import { CellObject } from 'xlsx-js-style'; import { CellDataConfigLocal } from '../../types/CellDataConfigLocal'; export interface IRowBuilder { createTableRow(config: CellDataConfigLocal[], row: Record<string, any>): CellObject[]; } export declare class RowBuilder<RowValueType extends Record<string, any>> implements IRowBuilder { private readonly cellBuilder; createTableRow(config: CellDataConfigLocal[], row: RowValueType): CellObject[]; private getField; }