drawRow.d.ts 438 B

12345678910
  1. import type { SpanningCellManager } from './spanningCellManager';
  2. import type { DrawVerticalLine } from './types/api';
  3. import type { BodyBorderConfig, Row } from './types/internal';
  4. export declare type DrawRowConfig = {
  5. border: BodyBorderConfig;
  6. drawVerticalLine: DrawVerticalLine;
  7. spanningCellManager?: SpanningCellManager;
  8. rowIndex?: number;
  9. };
  10. export declare const drawRow: (row: Row, config: DrawRowConfig) => string;