数通智联化工云平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
542 B

2 years ago
import type { SpanningCellManager } from './spanningCellManager';
/**
* Shared function to draw horizontal borders, rows or the entire table
*/
declare type DrawContentParameters = {
contents: string[];
drawSeparator: (index: number, size: number) => boolean;
separatorGetter: (index: number, size: number) => string;
spanningCellManager?: SpanningCellManager;
rowIndex?: number;
elementType?: 'border' | 'cell' | 'row';
};
export declare const drawContent: (parameters: DrawContentParameters) => string;
export {};