drawTable.d.ts 182 B

12
  1. import type { TableConfig, Row } from './types/internal';
  2. export declare const drawTable: (rows: Row[], columnWidths: number[], rowHeights: number[], config: TableConfig) => string;