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.
14 lines
542 B
14 lines
542 B
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 {};
|
|
|