UNPKG

med-table

Version:
18 lines (17 loc) 537 B
import { CellObject } from 'xlsx-js-style'; export interface ICellBuilder { createEmptyCell(): CellObject; createLinkCell(v: string, link: string): CellObject; createTextCell(v: string, style?: { size?: number; bold?: boolean; }): CellObject; } export declare class CellBuilder implements ICellBuilder { createEmptyCell(): CellObject; createTextCell(v: string, style?: { size?: number; bold?: boolean; }): CellObject; createLinkCell(v: string, link: string): CellObject; }