drawRow.d.ts
1 import type { DrawVerticalLine } from './types/api'; 2 import type { BodyBorderConfig, Row } from './types/internal'; 3 export declare const drawRow: (row: Row, config: { 4 border: BodyBorderConfig; 5 drawVerticalLine: DrawVerticalLine; 6 }) => string;