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.
11 lines
438 B
11 lines
438 B
|
2 years ago
|
import type { SpanningCellManager } from './spanningCellManager';
|
||
|
|
import type { DrawVerticalLine } from './types/api';
|
||
|
|
import type { BodyBorderConfig, Row } from './types/internal';
|
||
|
|
export declare type DrawRowConfig = {
|
||
|
|
border: BodyBorderConfig;
|
||
|
|
drawVerticalLine: DrawVerticalLine;
|
||
|
|
spanningCellManager?: SpanningCellManager;
|
||
|
|
rowIndex?: number;
|
||
|
|
};
|
||
|
|
export declare const drawRow: (row: Row, config: DrawRowConfig) => string;
|